/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

body.on_homepage {
    background-image: url(/assets/images/boe.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    border-bottom: 1px solid #2d3748;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    text-decoration: none;
    color: #60a5fa;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
    flex-shrink: 0;
    position: relative;
    top: 1px;
    margin-right: -3px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background-color: #2d3748;
    color: #60a5fa;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border: 2px solid #60a5fa;
    border-radius: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    border-bottom: 1px solid #2d3748;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.mobile-nav ul {
    list-style: none;
    padding: 0 20px;
}

.mobile-nav li {
    margin: 1rem 0;
}

.mobile-nav a {
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #2d3748;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 120px 2rem 0 2rem;
    position: relative;
    overflow: hidden;
    gap: 4rem;
}

.hero-content {
    flex: 0 1 600px;
    z-index: 2;
    text-align: left;
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    color: #60a5fa;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #a0aec0;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-visual {
    flex: 0 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Network Grid Animation */
.network-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    transform: scale(1.1);
}

.grid-node {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    position: relative;
    animation: pulse 3s infinite;
}

.grid-node::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: translate(-50%, -50%);
    animation: ripple 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #60a5fa;
    border: 2px solid #60a5fa;
}

.btn-secondary:hover {
    background: #60a5fa;
    color: white;
    transform: translateY(-2px);
}

/* Trust Indicators */
.trust-indicators {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.trust-indicators h2 {
    text-align: center;
    color: #60a5fa;
    margin-bottom: 3rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 12px;
    border: 1px solid #2d3748;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    color: white;
}

.trust-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.trust-item h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

/* Capability Overview */
.capability-overview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0f172a 100%);
}

.capability-overview h2 {
    text-align: center;
    color: #60a5fa;
    margin-bottom: 3rem;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.capability-card {
    padding: 2rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 12px;
    border: 1px solid #2d3748;
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    border-color: #60a5fa;
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.2);
}

.capability-card h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

/* Page Content */
.page-content {
    padding-top: 70px;
}

/* Contact Hero Image */
.contact-hero-image {
    height: 500px;
    background-image: url('/assets/images/contact.jpg');
    background-size: cover;
    background-position: center top 40%;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.contact-hero-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero-image .image-overlay h2 {
    color: #60a5fa;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero-image .image-overlay p {
    color: #e0e0e0;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.page-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
    color: #a0aec0;
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.content-text h2 {
    color: #60a5fa;
    margin-bottom: 1.5rem;
}

.content-text h3 {
    color: #60a5fa;
    margin: 2rem 0 1rem 0;
}

.content-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Infrastructure Diagram */
.infrastructure-diagram {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.diagram-layer {
    text-align: center;
    padding: 1.5rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 8px;
    border: 1px solid #2d3748;
}

.diagram-layer h4 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

.system-item {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    background: #2d3748;
    border-radius: 4px;
    color: #e0e0e0;
}

/* Vendor Mesh */
.vendor-mesh {
    position: relative;
    width: 300px;
    height: 300px;
}

.mesh-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    text-align: center;
    font-weight: 600;
    z-index: 2;
}

.vendor-node {
    position: absolute;
    background: #2d3748;
    color: #e0e0e0;
    padding: 0.75rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    border: 1px solid #4a5568;
}

.vendor-node.swift { top: 0; left: 50%; transform: translateX(-50%); }
.vendor-node.dtcc { top: 20%; right: 0; }
.vendor-node.euroclear { bottom: 20%; right: 0; }
.vendor-node.custodian { bottom: 0; left: 50%; transform: translateX(-50%); }
.vendor-node.cyber { top: 20%; left: 0; }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 12px;
    border: 1px solid #2d3748;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    color: white;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.feature-card h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

/* Assurance Grid */
.assurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.assurance-item {
    padding: 2rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 12px;
    border: 1px solid #2d3748;
}

.assurance-item h4 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

/* Board Grid */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.board-category {
    padding: 2rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 12px;
    border: 1px solid #2d3748;
}

.board-category h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

/* Governance Structure */
.governance-structure {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.board-level, .management-level {
    text-align: center;
    padding: 1.5rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 8px;
    border: 1px solid #2d3748;
}

.board-level h4, .management-level h4 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

.board-members, .management-areas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.member, .area {
    padding: 0.5rem 1rem;
    background: #2d3748;
    border-radius: 4px;
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* Oversight Grid */
.oversight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.oversight-area {
    padding: 2rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 12px;
    border: 1px solid #2d3748;
}

.oversight-area h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

/* Transparency Grid */
.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.transparency-item {
    padding: 2rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 12px;
    border: 1px solid #2d3748;
}

.transparency-item h4 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

/* Vendor Categories */
.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.vendor-category {
    padding: 2rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 12px;
    border: 1px solid #2d3748;
}

.vendor-category h3 {
    color: #60a5fa;
    margin-bottom: 1.5rem;
}

.vendor-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vendor-item {
    padding: 1rem;
    background: #2d3748;
    border-radius: 6px;
    border-left: 4px solid #60a5fa;
}

.vendor-item h4 {
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

/* Integration Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 12px;
    border: 1px solid #2d3748;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    color: white;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.benefit-card h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 12px;
    border: 1px solid #2d3748;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.process-step h4 {
    color: #60a5fa;
    margin: 1rem 0;
}

/* Service Tiers */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.tier-card {
    padding: 2rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 12px;
    border: 1px solid #2d3748;
    transition: all 0.3s ease;
}

.tier-card.featured {
    border-color: #60a5fa;
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.2);
}

.tier-card:hover {
    transform: translateY(-5px);
}

.tier-card h3 {
    color: #60a5fa;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tier-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.tier-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #2d3748;
    position: relative;
    padding-left: 1.5rem;
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #60a5fa;
    font-weight: bold;
}

.tier-requirements {
    padding: 1rem;
    background: #2d3748;
    border-radius: 6px;
}

.tier-requirements h4 {
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

/* Access Requirements */
.access-requirements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 8px;
    border: 1px solid #2d3748;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-2px);
    border-color: #60a5fa;
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.2);
}

.requirement-icon {
    width: 64px;
    height: 64px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.requirement-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.requirement-item h4 {
    color: #60a5fa;
    margin: 0;
    font-size: 1.1rem;
}

/* Current Members */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.member-category {
    padding: 2rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 12px;
    border: 1px solid #2d3748;
}

.member-category h3 {
    color: #60a5fa;
    margin-bottom: 1.5rem;
    text-align: center;
}

.member-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.member-item {
    padding: 0.75rem;
    background: #2d3748;
    border-radius: 4px;
    text-align: center;
    color: #e0e0e0;
    border-left: 4px solid #60a5fa;
}

/* Application Process */
.application-process {
    padding: 3rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0f172a 100%);
}

/* Call to Action */
.call-to-action {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.call-to-action h2 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

.call-to-action p {
    color: #a0aec0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Form */
.contact-overview {
    padding: 3rem 0;
}

.verification-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 6px;
    border: 1px solid #2d3748;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.step h4 {
    color: #60a5fa;
    margin: 0;
}

.security-notice {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 8px;
    border: 1px solid #2d3748;
}

.security-notice h4 {
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

/* Form Styles */
.contact-form {
    padding: 3rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0f172a 100%);
}

.contact-form h2 {
    color: #60a5fa;
    text-align: center;
    margin-bottom: 2rem;
}

.form-errors {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #dc2626;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.form-errors h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.form-errors ul {
    list-style: none;
    color: #dc2626;
}

.form-errors li {
    padding: 0.25rem 0;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #2d3748;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 4px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* Form Success */
.form-success {
    padding: 4rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0f172a 100%);
}

.success-message {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(45, 55, 72, 0.3);
    border-radius: 12px;
    border: 1px solid #2d3748;
}

.success-message h2 {
    color: #60a5fa;
    margin-bottom: 1.5rem;
}

.success-message p {
    color: #a0aec0;
    margin-bottom: 1rem;
}

/* System Status */
.system-status {
    padding: 2rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.status-notice {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid #f59e0b;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.status-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.status-content h3 {
    color: #f59e0b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.status-content p {
    color: #a0aec0;
    margin: 0;
    font-size: 1rem;
}

/* Fallback Notice */
.fallback-notice {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #dc2626;
    border-radius: 8px;
    text-align: left;
}

.fallback-notice h4 {
    color: #dc2626;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fallback-notice p {
    color: #a0aec0;
    margin: 0;
}

/* Submission Details */
.submission-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(45, 55, 72, 0.3);
    border: 1px solid #2d3748;
    border-radius: 8px;
    text-align: left;
}

.submission-details h4 {
    color: #60a5fa;
    margin-bottom: 1rem;
    text-align: center;
}

.submission-details p {
    color: #a0aec0;
    margin: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submission-details strong {
    color: #e0e0e0;
    min-width: 120px;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    border-top: 1px solid #2d3748;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #a0aec0;
    margin-bottom: 1rem;
}

.footer-link {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 150px 1rem 2rem 1rem;
        gap: 2rem;
    }
    
    .hero-content {
        flex: 1;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-visual {
        flex: 1;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .trust-grid,
    .capability-grid,
    .features-grid,
    .assurance-grid,
    .board-grid,
    .oversight-grid,
    .transparency-grid,
    .vendor-grid,
    .benefits-grid,
    .process-steps,
    .tiers-grid,
    .members-grid,
    .access-requirements {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Responsive adjustments for contact hero image */
    .contact-hero-image {
        height: 400px;
    }
    
    .contact-hero-image .image-overlay h2 {
        font-size: 2rem;
    }
    
    .contact-hero-image .image-overlay p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    /* Responsive adjustments for system status */
    .status-notice {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .submission-details p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .submission-details strong {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .network-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .grid-node {
        width: 40px;
        height: 40px;
    }
}
