/* ==========================================================================
   CSS Variables & Typography (Eggshell Theme & Rich Motion)
   ========================================================================== */
:root {
    /* Colors - Eggshell Light Theme */
    --bg-main: #FAFAF7;
    /* Eggshell white */
    --bg-surface: #FFFFFF;
    --bg-surface-glass: rgba(255, 255, 255, 0.7);
    --border-glass: rgba(0, 0, 0, 0.06);
    --border-heavy: rgba(0, 0, 0, 0.12);

    --text-main: #1C2331;
    /* Deep slate */
    --text-muted: #526075;

    --accent-gold: #00AEEF;
    /* Rich light blue to match the new logo */
    --accent-gold-glow: rgba(0, 174, 239, 0.2);
    --accent-blue: #2563EB;
    --accent-green: #059669;
    --accent-red: #DC2626;

    --bg-dark-footer: #111827;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #1C2331 0%, #374151 100%);
    --grad-text: linear-gradient(to right, #1C2331, #4B5563);
    --grad-gold: linear-gradient(to right, #00AEEF, #0077CC);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Sizes */
    --container-width: 1200px;
    --nav-height: 80px;

    /* Transitions (Rich Motion) */
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header.center>p {
    margin: 0 auto;
}

.text-gradient {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-text {
    font-size: 1.125rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-heavy);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.gold-badge {
    color: var(--accent-gold);
    border-color: rgba(0, 174, 239, 0.3);
    background: rgba(0, 174, 239, 0.05);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--grad-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.btn-tertiary {
    background: transparent;
    color: var(--text-main);
    font-weight: 600;
}

.btn-tertiary i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-tertiary:hover {
    color: var(--accent-gold);
}

.btn-tertiary:hover i {
    transform: translateX(6px);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ==========================================================================
   Background Effects
   ========================================================================== */
.glow-bg {
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.1;
}

.glow-1 {
    top: -20vh;
    right: -10vw;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
}

.glow-2 {
    bottom: -20vh;
    left: -20vw;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    z-index: 100;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(250, 250, 247, 0.85);
    /* Eggshell frosted */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-image {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--accent-gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.section {
    padding: 3.5rem 0;
    position: relative;
    z-index: 10;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
    z-index: 10;
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-title {
    font-size: clamp(2.2rem, 4.4vw, 3.15rem);
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.hero-cta .btn {
    min-width: 210px;
    padding: 0.8rem 1.35rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hero-stats-single {
    align-items: flex-start;
    width: 100%;
    max-width: 560px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item-experience .stat-value {
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    max-width: 100%;
    white-space: nowrap;
}

.stat-item-experience .stat-label {
    font-size: 0.95rem;
}

.stat-item-stack .stat-label {
    margin-top: 0.35rem;
    font-size: 0.95rem;
}

.hero-trust-copy {
    display: block;
    line-height: 1.15;
    white-space: nowrap;
}

.stat-item-experience .hero-trust-copy {
    font-size: clamp(1.12rem, 1.35vw, 1.45rem);
    letter-spacing: -0.02em;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-heavy);
}

/* Hero Abstract Visual (Rich Motion) */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: var(--transition-bounce);
}

.visual-card {
    position: relative;
    z-index: 2;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
}

.visual-card:hover {
    transform: none;
    box-shadow: none;
}

.card-header {
    display: flex;
    gap: 6px;
    margin-bottom: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.chart-mockup {
    height: 150px;
    position: relative;
    margin-bottom: 2rem;
}

.chart-line {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.data-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 10px;
    opacity: 0.3;
}

.bar {
    width: 8%;
    background: var(--text-main);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease-out;
}

.h-40 {
    height: 40%;
}

.h-70 {
    height: 70%;
}

.h-50 {
    height: 50%;
}

.h-90 {
    height: 90%;
}

.h-60 {
    height: 60%;
}

.card-stats-row {
    display: flex;
    gap: 1rem;
}

.mock-stat {
    flex: 1;
    background: var(--bg-surface);
    border: 1px solid var(--border-heavy);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition-bounce);
}

.mock-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.mock-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.mock-val {
    font-size: 1.25rem;
    font-weight: 700;
}

.mock-val.positive {
    color: var(--accent-green);
}

.hero-visual {
    position: relative;
    width: min(100%, 760px);
    margin-left: auto;
}

.hero-visual-image {
    width: 100%;
    display: block;
    border-radius: 24px;
    border: 1px solid rgba(0, 174, 239, 0.12);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
}

.visual-accent-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 1px dashed rgba(0, 174, 239, 0.3);
    border-radius: 50%;
    z-index: 1;
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.glass-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    padding: 2rem;
    border-radius: 16px;
    transition: var(--transition-bounce);
}

.glass-box:hover {
    background: var(--bg-surface);
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.icon-lg {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.icon-lg.gold {
    color: var(--accent-gold);
}

.icon-lg.blue {
    color: var(--accent-blue);
}

.glass-box h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.glass-box p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 174, 239, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(0, 174, 239, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 174, 239, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-bounce);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--border-glass);
    padding-top: 1.5rem;
}

.service-features li {
    font-size: 0.875rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '→';
    color: var(--accent-gold);
    font-weight: bold;
}

/* ==========================================================================
   Treasury Byte Section
   ========================================================================== */
.platform-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.platform-shell {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.platform-intro {
    max-width: 42rem;
}

.platform-intro .section-title,
.platform-intro .lead-text {
    text-align: left;
}

.platform-image {
    position: relative;
}

.platform-mockup {
    display: flex;
    height: 400px;
    padding: 0;
    overflow: hidden;
    background: #111827;
    /* Keep dashboard dark for contrast */
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    transition: var(--transition-bounce);
    transform: perspective(1000px) rotateY(10deg);
}

.platform-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.dash-sidebar {
    width: 60px;
    background: rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.dash-item {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.dash-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.dash-item.active {
    background: var(--accent-gold);
}

.dash-main {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-title-bar {
    width: 120px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.dash-user {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.dash-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.d-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.d-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.d-val {
    display: block;
    height: 12px;
    width: 80%;
    border-radius: 4px;
    background: currentColor;
}

.gold-txt {
    color: #fbbf24;
}

.blue-txt {
    color: #60a5fa;
}

.green-txt {
    color: #34d399;
}

.d-lbl {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
}

.dash-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

.d-row {
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.d-row.header {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.float-tag {
    position: absolute;
    background: var(--bg-surface);
    border: 1px solid var(--border-heavy);
    color: var(--text-main);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    z-index: 5;
}

.float-tag.tag-1 {
    top: 18px;
    right: -12px;
}

.float-tag.tag-1 i {
    color: var(--accent-green);
}

.float-tag.tag-2 {
    bottom: 24px;
    left: -16px;
    animation-delay: 2s;
}

.float-tag.tag-2 i {
    color: var(--accent-gold);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.feature-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    transition: var(--transition-fast);
}

.feature-list li:hover {
    transform: translateX(5px);
}

.feature-list i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    background: rgba(0, 174, 239, 0.1);
    padding: 0.5rem;
    border-radius: 10px;
    height: fit-content;
}

.feature-list strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.feature-list span {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Service Offerings Grid
   ========================================================================== */
.offerings-container {
    margin-top: 1rem;
}

.offerings-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.offering-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition-bounce);
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    min-height: 154px;
}

.offering-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 174, 239, 0.3);
}

.offering-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    background: rgba(0, 174, 239, 0.1);
    padding: 0.5rem;
    border-radius: 10px;
    flex-shrink: 0;
}

/* ==========================================================================
   Team / Founder Section
   ========================================================================== */
.team-container {
    max-width: 960px;
    margin: 0 auto;
}

.team {
    padding-top: 1.5rem;
}

.founder-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
    padding: 3rem;
}

.avatar-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 174, 239, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TreasuryByte Logo in Platform Section */
.treasurybyte-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

/* Platform Screenshot (replaces CSS mockup) */
.platform-mockup-img {
    position: relative;
    border-radius: 0;
    overflow: visible;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition-bounce);
    transform: perspective(1000px) rotateY(8deg);
}

.platform-mockup-img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.platform-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.founder-role {
    display: block;
    font-size: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.founder-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.credential-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    background: rgba(0, 174, 239, 0.08);
    border: 1px solid rgba(0, 174, 239, 0.2);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-main);
}

.credential-tag i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.founder-bio {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.founder-actions {
    margin-bottom: 1.5rem;
}

.founder-actions .btn {
    border: 1px solid rgba(0, 174, 239, 0.18);
    background: rgba(0, 174, 239, 0.08);
    color: var(--text-main);
}

.founder-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.9375rem;
    color: var(--text-muted);
    padding: 0.75rem 1rem;
    background: rgba(250, 250, 247, 0.8);
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    transition: var(--transition-fast);
}

.highlight-item:hover {
    transform: translateX(6px);
    background: rgba(0, 174, 239, 0.04);
}

.highlight-item i {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==========================================================================
   TreasuryByte Architecture & Impact
   ========================================================================== */
.tb-architecture {
    margin-top: 2.5rem;
}

.tb-arch-title,
.tb-impact-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tb-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.tb-pillar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 174, 239, 0.06);
    border: 1px solid rgba(0, 174, 239, 0.15);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.tb-pillar:hover {
    transform: translateX(4px);
    background: rgba(0, 174, 239, 0.1);
}

.tb-pillar i {
    color: var(--accent-gold);
    font-size: 1.125rem;
}

.tb-impact-container {
    margin-top: 3rem;
    text-align: center;
}

.tb-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.25rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-main);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: var(--transition-bounce);
}

.impact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.impact-item i {
    color: var(--accent-green);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.tb-tagline {
    color: var(--text-muted);
    font-size: 1.0625rem;
    margin-top: 1.5rem;
}

.tb-tagline strong {
    color: var(--text-main);
}

/* ==========================================================================
   Case Studies Section
   ========================================================================== */
.case-studies-content {
    margin-top: 2.5rem;
}

.impact-studies-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.impact-study-card {
    padding: 1.6rem;
    display: grid;
    gap: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(250, 250, 247, 0.96) 100%);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    transition: var(--transition-smooth);
}

.impact-study-card.is-active {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    border-color: rgba(0, 174, 239, 0.18);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.08);
}

.impact-study-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.impact-study-summary-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.impact-study-heading {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 0;
}

.impact-study-category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.38rem 0.82rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.impact-study-category-platform {
    background: rgba(0, 174, 239, 0.1);
    color: var(--accent-gold);
}

.impact-study-category-advisory {
    background: rgba(17, 24, 39, 0.08);
    color: var(--text-main);
}

.impact-study-title {
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    line-height: 1.08;
    color: var(--text-main);
}

.impact-study-industry {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.impact-study-industry span {
    display: inline-block;
    margin-right: 0.45rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-main);
}

.impact-study-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 174, 239, 0.18);
    background: rgba(0, 174, 239, 0.05);
    color: var(--text-main);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.impact-study-toggle:hover {
    background: rgba(0, 174, 239, 0.1);
    color: var(--accent-gold);
}

.impact-study-toggle i {
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.impact-study-card.is-active .impact-study-toggle i {
    transform: rotate(180deg);
}

.impact-study-abstract {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 62ch;
}

.impact-study-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.impact-study-metric {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(0, 174, 239, 0.06);
    border: 1px solid rgba(0, 174, 239, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    min-height: 98px;
}

.impact-study-metric strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    line-height: 1.2;
    color: var(--text-main);
}

.impact-study-metric span {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.45;
}

.impact-study-detail[hidden] {
    display: none !important;
}

.impact-study-detail {
    min-width: 0;
}

.impact-study-detail-panel {
    height: 100%;
    border-radius: 24px;
    padding: 1.3rem 1.35rem;
    border: 1px solid rgba(0, 174, 239, 0.12);
    background: linear-gradient(180deg, rgba(0, 174, 239, 0.03) 0%, rgba(37, 99, 235, 0.02) 100%);
}

.impact-study-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.impact-study-section-block {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.impact-study-section-label {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.impact-study-section-block p {
    color: var(--text-muted);
    line-height: 1.7;
}

.impact-study-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.impact-study-list li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.impact-study-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent-gold);
}

.impact-study-process-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.impact-study-process-card {
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(17, 24, 39, 0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.impact-study-process-card span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.impact-study-process-card strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-main);
}

.impact-study-table-wrap {
    overflow-x: auto;
    margin-top: 0.1rem;
    border-radius: 18px;
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.85);
}

.impact-study-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.impact-study-table th,
.impact-study-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--border-glass);
    text-align: left;
    white-space: nowrap;
}

.impact-study-table th {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: rgba(0, 174, 239, 0.05);
}

.impact-study-table td {
    color: var(--text-main);
    font-size: 0.95rem;
}

.impact-study-table tbody tr:last-child td {
    border-bottom: none;
    font-weight: 700;
}

@media (max-width: 1080px) {
    .impact-study-card.is-active {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .impact-study-card,
    .impact-study-card.is-active {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    .impact-study-summary-head {
        flex-direction: column;
    }

    .impact-study-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .impact-study-metrics,
    .impact-study-process-strip {
        grid-template-columns: 1fr;
    }

    .impact-study-detail-panel {
        padding: 1rem;
    }
}

/* ==========================================================================
   Daily Reports Section
   ========================================================================== */
.reports-content {
    margin-top: 2.5rem;
}

.reports-latest {
    max-width: 760px;
    margin: 0 auto;
}

.reports-latest-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.report-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    transition: var(--transition-bounce);
}

.report-card-featured {
    padding: 1.75rem 2rem;
}

.report-card-main {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    flex: 1;
    min-width: 0;
}

.report-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.report-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(220, 38, 38, 0.1);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.report-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.report-title {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-main);
}

.report-date {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.report-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.report-synopsis {
    margin-top: 0.45rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.report-synopsis-featured {
    max-width: 48ch;
}

.report-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-left: auto;
    flex-shrink: 0;
}

.report-action-btn {
    min-width: 108px;
    padding: 0.7rem 1rem;
    font-size: 0.9375rem;
}

.report-view-btn {
    background: rgba(0, 174, 239, 0.08);
    border: 1px solid rgba(0, 174, 239, 0.18);
}

.report-view-btn:hover {
    background: rgba(0, 174, 239, 0.14);
    color: var(--accent-gold);
}

.reports-archive {
    margin-top: 2rem;
}

.reports-archive-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reports-archive-header h3 {
    font-size: 1.375rem;
}

.reports-archive-header span {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
}

.reports-archive-table {
    overflow: hidden;
}

.reports-table {
    width: 100%;
    border-collapse: collapse;
}

.reports-table thead th {
    text-align: left;
    padding: 1rem 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    background: rgba(0, 174, 239, 0.05);
    border-bottom: 1px solid var(--border-glass);
}

.reports-table thead th:last-child {
    text-align: right;
}

.reports-archive-row td {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-glass);
    vertical-align: middle;
}

.reports-table tbody:first-of-type .reports-archive-row:first-child td {
    border-top: none;
}

.reports-table-report strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.reports-table-report span {
    display: block;
    margin-top: 0.2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.reports-table-synopsis {
    margin-top: 0.55rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reports-table-date {
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}

.reports-table-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.reports-archive-toggle {
    width: 100%;
    border: none;
    border-top: 1px solid var(--border-glass);
    background: transparent;
    color: var(--text-main);
    padding: 0.95rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.reports-archive-toggle:hover {
    color: var(--accent-gold);
    background: rgba(0, 174, 239, 0.04);
}

.reports-loading,
.reports-empty,
.reports-error,
.case-studies-loading,
.case-studies-empty,
.case-studies-error {
    max-width: 760px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reports-loading i,
.reports-empty i,
.reports-error i,
.case-studies-loading i,
.case-studies-empty i,
.case-studies-error i {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.reports-loading i,
.case-studies-loading i {
    color: var(--accent-gold);
    animation: spin 1.1s linear infinite;
}

.reports-empty i,
.case-studies-empty i {
    color: var(--accent-blue);
}

.reports-error i,
.case-studies-error i {
    color: var(--accent-red);
}

.reports-empty h3,
.reports-error h3,
.case-studies-empty h3,
.case-studies-error h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.reports-empty p,
.reports-error p,
.reports-loading span,
.case-studies-empty p,
.case-studies-error p,
.case-studies-loading span {
    color: var(--text-muted);
}

.reports-note {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.reports-note i {
    color: var(--accent-gold);
}

.asset-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 200;
}

.asset-modal.active {
    display: flex;
}

.asset-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.asset-modal-dialog {
    position: relative;
    width: min(960px, calc(100vw - 2rem));
    height: min(92vh, 960px);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    z-index: 1;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 20px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.asset-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.asset-modal-heading {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.asset-modal-type {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: #cbd5e1;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.asset-modal-header h3 {
    font-size: 1.25rem;
    color: #f8fafc;
}

.asset-modal-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.asset-modal-actions .btn {
    min-width: 0;
}

.asset-modal-actions .btn-tertiary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e5e7eb;
}

.asset-modal-actions .btn-tertiary:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.asset-modal-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #f8fafc;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.asset-modal-close:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.24);
}

.asset-modal-body {
    flex: 1;
    min-height: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: #0b1120;
    padding: 0.75rem;
    position: relative;
}

.asset-modal[data-viewer-type="image"] .asset-modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.asset-modal[data-viewer-type="pdf"] .asset-modal-body {
    display: block;
}

.asset-modal-body > [hidden] {
    display: none !important;
}

.pdf-canvas-container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem;
}

.pdf-canvas-track {
    width: min(100%, 820px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pdf-canvas-page {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
    background: #ffffff;
}

.pdf-canvas-page canvas {
    display: block;
    width: 100%;
    height: auto;
}

.pdf-viewer-message {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    padding: 2rem 1rem;
}

.pdf-viewer-message i {
    font-size: 1.75rem;
    color: var(--accent-gold);
    animation: spin 1.1s linear infinite;
}

.pdf-viewer-message-error i {
    color: var(--accent-red);
    animation: none;
}

.asset-modal-body img {
    width: 100%;
    height: 100%;
    border: none;
    background: #ffffff;
    border-radius: 16px;
}

.asset-modal-body img {
    object-fit: contain;
    background: #ffffff;
}

body.modal-open {
    overflow: hidden;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   Contact Details Inline
   ========================================================================== */
.contact-details-inline {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--accent-gold);
}

.contact-link i {
    font-size: 1.25rem;
    color: var(--accent-gold);
}

/* ==========================================================================
   Value Prop Section
   ========================================================================== */
.value-container {
    background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(250, 250, 247, 1) 100%);
    border-radius: 32px;
    padding: 3rem 3rem;
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.val-card {
    text-align: center;
    transition: var(--transition-smooth);
}

.val-card:hover {
    transform: translateY(-10px);
}

.val-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--border-heavy);
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.val-card:hover .val-num {
    -webkit-text-stroke: 1px var(--accent-gold);
    color: rgba(0, 174, 239, 0.1);
    transform: scale(1.1);
}

.val-card h3 {
    margin-bottom: 1rem;
    color: var(--text-main);
}

.val-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-bounce);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.icon-quotes {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.quote-text {
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.quote-author strong {
    color: var(--text-main);
}

.quote-author span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Contact / CTA
   ========================================================================== */
.contact-cta {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-surface);
    border: 1px solid rgba(0, 174, 239, 0.2);
    padding: 5rem 2rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(0, 174, 239, 0.1), transparent 70%);
    pointer-events: none;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--bg-dark-footer);
    color: #f8fafc;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer .logo-image-footer {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.9375rem;
    margin-top: 1rem;
    max-width: 300px;
}

.footer h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact p {
    color: #94a3b8;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.875rem;
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    /* Richer reveal curve */
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.9rem;
    }

    .about-container {
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .platform-container {
        gap: 3rem;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offerings-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .founder-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .founder-credentials {
        justify-content: center;
    }

    .highlight-item {
        text-align: left;
    }

    .tb-impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--bg-surface);
        padding: 2rem;
        flex-direction: column;
        border-bottom: 1px solid var(--border-glass);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-container,
    .about-container,
    .platform-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: calc(var(--nav-height) + 2rem);
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-stats-single {
        align-items: center;
    }

    .platform-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-card {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .avatar-placeholder {
        width: 120px;
        height: 120px;
    }

    .tb-pillars {
        grid-template-columns: 1fr;
    }

    .tb-impact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .report-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 1.25rem;
    }

    .report-card-main {
        align-items: flex-start;
    }

    .report-actions {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
    }

    .report-action-btn {
        width: 100%;
    }

    .case-study-action-btn {
        width: 100%;
    }

    .reports-table,
    .reports-table thead,
    .reports-table tbody,
    .reports-table tr,
    .reports-table th,
    .reports-table td {
        display: block;
    }

    .reports-table thead {
        display: none;
    }

    .reports-archive-row td {
        padding: 0.75rem 1rem;
        border-top: none;
    }

    .reports-archive-row {
        border-top: 1px solid var(--border-glass);
        padding: 0.25rem 0;
    }

    .reports-table tbody:first-of-type .reports-archive-row:first-child {
        border-top: none;
    }

    .reports-table-date {
        padding-top: 0;
    }

    .reports-table-actions {
        justify-content: flex-start;
    }

    .asset-modal {
        padding: 1rem;
    }

    .asset-modal-dialog {
        height: 88vh;
        padding: 1rem;
    }

    .asset-modal-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .asset-modal-actions {
        width: 100%;
    }

    .asset-modal-actions .btn {
        width: auto;
    }

    .pdf-canvas-container {
        padding: 0.75rem;
    }

    .pdf-canvas-track {
        width: 100%;
    }

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

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

@media (max-width: 560px) {
    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .asset-modal-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .asset-modal-actions .btn,
    .asset-modal-close {
        width: 100%;
    }
}

/* ==========================================================================
   Impact Delivered — Dedicated Page
   ========================================================================== */

/* Hero */
.impact-hero {
    padding: 10rem 0 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.impact-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-gold);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.impact-back-link:hover {
    gap: 0.75rem;
}

.impact-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.impact-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Stories Container */
.impact-stories {
    padding: 2rem 0 5rem;
    position: relative;
    z-index: 2;
}

.impact-stories .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Individual Story Card */
.impact-story {
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(250, 250, 247, 0.96) 100%);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    transition: var(--transition-smooth);
}

.impact-story:hover {
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

/* Story Header */
.impact-story-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.impact-story-header .impact-study-category {
    margin-bottom: 0.75rem;
}

.impact-story-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-main);
    margin: 0.75rem 0 0.5rem;
}

.impact-story-industry {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.impact-story-industry span {
    display: inline-block;
    margin-right: 0.45rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-main);
}

/* Metrics Strip */
.impact-story-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.impact-story-metric {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.06), rgba(37, 99, 235, 0.04));
    border: 1px solid rgba(0, 174, 239, 0.12);
    text-align: center;
}

.impact-story-metric strong {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1.2;
}

.impact-story-metric span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Story Body — Vertical Flow */
.impact-story-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.impact-story-section {
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.impact-story-section h3 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.impact-story-section p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
}

.impact-story-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.impact-story-section ul li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-body);
}

.impact-story-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
}

/* Process Strip (Before / After) */
.impact-story-process-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.impact-story-process-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(0, 174, 239, 0.06);
    border: 1px solid rgba(0, 174, 239, 0.1);
    text-align: center;
}

.impact-story-process-card span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.impact-story-process-card strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.impact-delta-down {
    color: #dc2626;
    font-weight: 800;
    margin-right: 0.25rem;
}

.impact-story-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.impact-story-layout-split .impact-story-content-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 2rem;
    align-items: start;
}

.impact-story-layout-split .impact-story-gallery {
    grid-template-columns: 1fr;
    margin-bottom: 0;
    position: sticky;
    top: calc(var(--nav-height) + 1.5rem);
}

.impact-story-gallery-item {
    margin: 0;
    min-width: 0;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 174, 239, 0.12);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.impact-story-gallery-item-wide {
    grid-column: span 2;
}

.impact-story-layout-split .impact-story-gallery-item,
.impact-story-layout-split .impact-story-gallery-item-wide {
    grid-column: span 1;
}

.impact-story-gallery-item img {
    width: 100%;
    min-height: 220px;
    height: 100%;
    display: block;
    object-fit: cover;
}

.impact-story-layout-split .impact-story-gallery-item img {
    min-height: 0;
    aspect-ratio: 4 / 3;
}

/* Financial Table */
.impact-story-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.impact-story-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.impact-story-table th {
    background: rgba(0, 174, 239, 0.06);
    padding: 0.85rem 1.25rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-main);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.impact-story-table td {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    color: var(--text-body);
}

.impact-story-table .total-row td {
    font-weight: 700;
    color: var(--text-main);
    background: rgba(0, 174, 239, 0.04);
}

.impact-story-table .subtotal-row td {
    font-weight: 600;
    border-top: 2px solid rgba(0, 174, 239, 0.2);
}

/* ==========================================================================
   Homepage Impact Summary Cards
   ========================================================================== */

.impact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.impact-summary-card {
    padding: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(250, 250, 247, 0.96) 100%);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.impact-summary-card:hover {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-3px);
}

.impact-summary-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.impact-summary-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

.impact-summary-industry {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.impact-summary-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.impact-summary-metric {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.impact-summary-metric strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.impact-summary-metric span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.impact-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-decoration: none;
    margin-top: auto;
    transition: var(--transition-smooth);
}

.impact-read-more:hover {
    gap: 0.7rem;
}

.impact-view-all {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive — Impact Page */
@media (max-width: 768px) {
    .impact-story-body {
        grid-template-columns: 1fr;
    }

    .impact-story-metrics {
        grid-template-columns: 1fr;
    }

    .impact-story-process-strip {
        grid-template-columns: 1fr;
    }

    .impact-story {
        padding: 1.5rem;
    }

    .impact-cards-grid {
        grid-template-columns: 1fr;
    }

    .impact-hero {
        padding: 8rem 0 2rem;
    }

    .impact-listing-grid {
        grid-template-columns: 1fr;
    }

    .impact-story-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ==========================================================================
   Impact Delivered — Listing Page
   ========================================================================== */
.impact-listing {
    padding: 2rem 0 4rem;
}

.impact-listing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.impact-listing-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid var(--border-glass);
}

.impact-listing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 174, 239, 0.1);
    border-color: rgba(0, 174, 239, 0.3);
}

.impact-listing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.impact-listing-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.impact-listing-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.impact-listing-industry {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.impact-listing-metrics {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.impact-listing-metric {
    display: flex;
    flex-direction: column;
}

.impact-listing-metric strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.impact-listing-metric span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.impact-listing-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-top: auto;
    transition: gap 0.3s ease;
}

.impact-listing-card:hover .impact-listing-cta {
    gap: 0.75rem;
}

/* ==========================================================================
   Impact Delivered — Story Detail Navigation
   ========================================================================== */
.impact-story-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 4rem;
    gap: 1rem;
}

.impact-study-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
}

.impact-study-category-platform {
    background: rgba(0, 174, 239, 0.12);
    color: var(--accent-primary);
}

.impact-study-category-advisory {
    background: rgba(76, 175, 80, 0.12);
    color: #4CAF50;
}

.services-grid > *,
.offerings-grid > *,
.tb-pillars > *,
.tb-impact-grid > *,
.impact-cards-grid > *,
.impact-listing-grid > *,
.impact-story-body > *,
.footer-grid > * {
    min-width: 0;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .impact-story-metrics,
    .impact-story-process-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .nav-container {
        gap: 0.75rem;
    }

    .nav-links {
        gap: 1rem;
        padding: 1rem 1.25rem 1.5rem;
        align-items: stretch;
    }

    .nav-links.active,
    .nav-links.is-open {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem 0;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
    }

    .menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--nav-height) + 1.5rem);
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: clamp(1.95rem, 9vw, 2.65rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-copy {
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
    }

    .hero-stats-single {
        align-items: center;
    }

    .stat-divider {
        display: none;
    }

    .stat-item-experience .stat-value {
        white-space: normal;
    }

    .hero-trust-copy {
        text-align: center;
    }

    .stat-item-experience .hero-trust-copy {
        font-size: 0.94rem;
    }

    .hero-visual {
        width: min(100%, 420px);
        margin: 0 auto;
        overflow: hidden;
    }

    .visual-accent-ring {
        width: 92%;
        height: 92%;
    }

    .glow-bg {
        opacity: 0.35;
    }

    .platform-image {
        padding-top: 2.35rem;
        padding-bottom: 2.85rem;
    }

    .float-tag {
        position: absolute;
        display: inline-flex;
        width: auto;
        max-width: min(100%, 15.5rem);
        padding: 0.65rem 0.9rem;
        border-radius: 14px;
        font-size: 0.8rem;
        line-height: 1.3;
        animation: none;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    }

    .float-tag.tag-1 {
        top: 0;
        right: 0.5rem;
        margin: 0;
        transform: translateY(-12%);
    }

    .float-tag.tag-2 {
        bottom: 0;
        left: 0.5rem;
        margin: 0;
        transform: translateY(12%);
    }

    .about-container {
        gap: 1.5rem;
        padding: 2rem 1.25rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-desc,
    .founder-bio,
    .tb-tagline {
        font-size: 1rem;
    }

    .offerings-title {
        margin-bottom: 1.25rem;
    }

    .offering-item {
        min-height: 0;
        padding: 1rem;
    }

    .founder-card {
        justify-items: start;
        text-align: left;
    }

    .founder-credentials {
        justify-content: flex-start;
    }

    .founder-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .highlight-item {
        padding: 0.9rem 1rem;
    }

    .platform-container {
        gap: 2rem;
    }

    .platform-shell {
        gap: 2rem;
    }

    .platform-mockup-img {
        transform: none;
    }

    .tb-impact-container {
        margin-top: 2rem;
    }

    .impact-item {
        align-items: flex-start;
    }

    .impact-summary-card {
        padding: 1.5rem;
    }

    .impact-summary-title {
        font-size: 1.35rem;
    }

    .impact-summary-metrics {
        flex-direction: column;
        gap: 0.75rem;
    }

    .asset-modal-dialog {
        width: min(100vw - 1rem, 960px);
        height: min(92vh, 960px);
        padding: 0.85rem;
    }

    .asset-modal-header h3 {
        font-size: 1.1rem;
    }

    .asset-modal-actions {
        width: 100%;
    }

    .asset-modal-actions .btn {
        flex: 1 1 auto;
        justify-content: center;
    }

    .pdf-canvas-container {
        padding: 0.5rem;
    }

    .pdf-canvas-track {
        width: 100%;
    }

    .impact-hero {
        padding: 7.5rem 0 1.75rem;
    }

    .impact-hero-title {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .impact-hero-subtitle {
        font-size: 1rem;
        max-width: 32rem;
    }

    .impact-hero-subtitle br {
        display: none;
    }

    .impact-back-link {
        margin-bottom: 1rem;
    }

    .impact-stories {
        padding: 1.25rem 0 3.5rem;
    }

    .impact-stories .container {
        gap: 1.5rem;
    }

    .impact-story,
    .impact-story-body,
    .impact-story-section,
    .impact-story-section-full,
    .impact-story-table-wrap {
        min-width: 0;
    }

    .impact-story {
        padding: 1.25rem;
    }

    .impact-story-body {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
    }

    .impact-story-layout-split .impact-story-content-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .impact-story-layout-split .impact-story-gallery {
        position: static;
    }

    .impact-story-section {
        padding: 1.1rem;
    }

    .impact-story-section p,
    .impact-story-section li {
        font-size: 0.98rem;
        line-height: 1.65;
        overflow-wrap: anywhere;
    }

    .impact-story-metrics,
    .impact-story-process-strip {
        grid-template-columns: 1fr;
        margin-bottom: 1rem;
    }

    .impact-story-table-wrap {
        width: 100%;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .impact-story-table {
        min-width: 720px;
    }

    .impact-story-gallery {
        grid-template-columns: 1fr;
    }

    .impact-story-gallery-item-wide {
        grid-column: span 1;
    }

    .impact-listing {
        padding: 1.25rem 0 3rem;
    }

    .impact-listing-grid {
        grid-template-columns: 1fr;
    }

    .impact-listing-card {
        padding: 1.4rem;
    }

    .impact-listing-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .impact-listing-metrics {
        gap: 0.9rem;
    }

    .impact-story-nav {
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem 0 3rem;
    }

    .impact-story-nav .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 1rem;
    }

    .logo-image {
        height: 38px;
    }

    .hero-title {
        font-size: clamp(1.9rem, 11vw, 2.5rem);
    }

    .hero-stats {
        align-items: stretch;
    }

    .stat-item {
        text-align: center;
    }

    .impact-summary-metric strong {
        font-size: 1.05rem;
    }

    .impact-story-metric strong {
        font-size: 1.2rem;
    }

    .asset-modal {
        padding: 0.5rem;
    }

    .asset-modal-body {
        padding: 0.5rem;
    }
}
