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

:root {
    --primary-color: #e6750a !important;
    --primary-hover: #d4670a !important;
    --accent-color: #f4a460 !important;
    --accent-hover: #e6943d !important;
    --background-dark: #0a0a0a;
    --background-secondary: #161616;
    --card-background: #1a1a1a;
    --border-color: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta {
    padding: 0.5rem 1rem;
    border-width: 1px;
    font-size: 0.8125rem;
}



@media (max-width: 480px) {
    .header-cta {
        padding: 0.45rem 0.75rem;
        font-size: 0.75rem;
    }
}

.hero {
    position: relative;
    padding: 8rem 0 3rem;
    text-align: center;
    background: var(--background-dark);
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sunrise-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}


.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.cta-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.vision {
    padding: 6rem 0 2rem;
    background: var(--background-dark);
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
    margin-top: 1rem;
}

.partner-slider {
    padding: 1rem 0 4rem;
    background: var(--background-dark);
    overflow: hidden;
    position: relative;
}

/* Hero-specific CTA spacing was tightened previously; reverted to global defaults */

.slider-track {
    display: flex;
    animation: slide 30s linear infinite;
    gap: 2rem;
    width: fit-content;
}

.partner-box {
    flex-shrink: 0;
    width: 160px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-box img {
    max-width: 160px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: brightness(1) grayscale(0);
    transition: all 0.3s ease;
    display: block;
}

.partner-box:hover {
    transform: translateY(-2px);
}

.partner-box:hover img {
    filter: brightness(1.2) grayscale(0);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

.trusted-by {
    padding: 6rem 0 4rem;
    background: var(--background-secondary);
}

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

.board-card {
    background: var(--card-background);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.board-card:hover {
    transform: translateY(-4px);
    border-color: #e6750a !important;
    box-shadow: 0 8px 32px rgba(230, 117, 10, 0.1);
}

.board-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.board-card h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.board-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: var(--card-background);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    max-width: 380px;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: #e6750a !important;
    box-shadow: 0 8px 32px rgba(230, 117, 10, 0.1);
}

.testimonial-content {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--background-dark);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
}

/* .total-assets section removed */

.services {
    padding: 6rem 0 3rem;
    background: var(--background-dark);
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid.three-column {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.services-grid.four-column {
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.services-grid.six-column {
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2rem;
}

.service-tile {
    background: transparent;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-link.disabled {
    pointer-events: none;
    cursor: default;
}

.service-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.35) !important;
    box-shadow: none;
}

/* Service feature badge (top-right) */
.service-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    backdrop-filter: blur(6px);
}

.service-badge .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #15d27a;
    box-shadow: 0 0 0 2px rgba(21,210,122,0.2);
}

.service-tile:hover .service-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: #e6750a44;
}

@media (max-width: 480px) {
    .service-badge { top: 10px; right: 10px; font-size: 0.7rem; padding: 0.3rem 0.5rem; }
}


.service-tile:hover .service-icon img {
    filter: brightness(1.2);
}

.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-icon img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    object-position: center;
    filter: brightness(0.8);
    transition: all 0.3s ease;
    max-width: 100%;
    max-height: 100%;
}

.service-tile h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-tile p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.team {
    padding: 6rem 0;
    background: var(--background-dark);
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    max-width: 300px;
}

.team-member:hover {
    transform: translateY(-4px);
    border-color: #e6750a !important;
    box-shadow: 0 8px 32px rgba(230, 117, 10, 0.1);
}

.team-member:hover .member-avatar {
    border-color: var(--border-color) !important;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    transition: border-color 0.3s ease;
    position: relative;
    background: var(--card-background);
}

.member-avatar img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #e6750a !important;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.member-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-dark);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social:hover {
    border-color: #e6750a !important;
    color: var(--primary-color);
    background: rgba(230, 117, 10, 0.1);
    transform: scale(1.1);
}

.validator-info {
    background: var(--background-dark);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid var(--border-color);
}

.validator-info h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--card-background);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.info-item:hover {
    border-color: #e6750a !important;
}

.info-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.75rem;
}

.info-value {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.pubkeys {
    margin-top: 1.5rem;
}

.pubkey-item {
    background: var(--card-background);
    padding: 1rem;
    border-radius: 6px;
    margin: 0.75rem 0;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 0.75rem;
    word-break: break-all;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.pubkey-item:hover {
    border-color: #e6750a !important;
}

.pubkey-item strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
}

footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    background: var(--background-dark);
}

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

footer p {
    font-size: 0.875rem;
    margin: 0;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-background);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social:hover {
    border-color: #e6750a !important;
    color: var(--primary-color);
    background: rgba(230, 117, 10, 0.1);
    transform: scale(1.1);
}

/* Security Section Styles */
.security-section {
    margin-top: 3rem;
}

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

.security-card {
    background: var(--background-dark);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.security-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(230, 117, 10, 0.1);
}

.security-card h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.security-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Coming Soon Styles */
.coming-soon {
    padding: 6rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.coming-soon h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.coming-soon p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Target Section Styles */
.targets-section {
    margin-top: 3rem;
}

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

.target-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.target-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(230, 117, 10, 0.1);
}

.target-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.target-card h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.target-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.clients-section {
    margin-top: 3rem;
    text-align: center;
}

.clients-section .coming-soon-content {
    max-width: 400px;
    margin: 2rem auto 0;
}

.clients-section .coming-soon-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Enhanced Card Styles */
.card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center !important;
    width: 100%;
    display: block;
}

.card-icon, .target-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-right: 1rem;
}

.card-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto;
    text-align: center !important;
    width: 100%;
    display: block;
}

.card-content {
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
    text-align: center;
}

/* Target Partners専用スタイル */
.target-centered {
    text-align: center !important;
}

.target-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center !important;
}

.target-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-align: center !important;
}

.target-content {
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
    text-align: center !important;
}

.target-content p {
    margin: 0;
    text-align: center !important;
}

.card-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feature-list {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-bullet {
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-item span:last-child {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.targets {
    padding: 6rem 0;
}

.targets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    align-items: stretch;
}

.target-card {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 320px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.target-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(230, 117, 10, 0.1);
}

.clients {
    padding: 6rem 0;
}

.clients-content {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Clients: Coming Soon text styling */
.clients-content p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.clients-content p:hover {
    color: var(--primary-color);
}

.coming-soon-card {
    background: var(--card-background);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    max-width: 500px;
    transition: all 0.3s ease;
}

.coming-soon-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(230, 117, 10, 0.1);
}

.coming-soon-card .coming-soon-icon {
    font-size: 3rem;
}

.simple-coming-soon {
    text-align: center;
    margin-top: 3rem;
}

.simple-coming-soon p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.simple-policy {
    text-align: center;
    margin: 3rem auto;
    max-width: 800px;
}

.simple-policy p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

/* Trusted By Section */
.trusted-by {
    padding: 6rem 0;
    background: var(--background-secondary);
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    flex-wrap: nowrap;
}

.testimonial-card {
    background: var(--card-background);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 2rem;
    min-width: 400px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(230, 117, 10, 0.1);
}

.testimonial-quote {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.testimonial-quote p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

.testimonial-quote p::before {
    content: '"';
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.testimonial-quote p::after {
    content: '"';
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

.testimonial-author .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author .author-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.testimonial-author .author-info span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
}

.company-logo {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-logo img {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0.8) grayscale(0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .company-logo img {
    filter: brightness(1) grayscale(0);
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 5rem 0 4rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trusted-by,
    .services,
    .team {
        padding: 4rem 0;
    }
    /* Reduce services bottom padding and news top when adjacent */
    .services { padding-bottom: 2rem; }
    .services + .news { padding-top: 1.5rem; }
    
    
    .trusted-board {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .team-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .team-member {
        max-width: 100%;
    }
    
    .services-grid {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .services-grid.three-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid.four-column {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid.six-column {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-slider {
        overflow-x: auto;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        min-width: 300px;
    }
    
    .service-tile {
        max-width: 400px;
        width: 100%;
        padding: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    .service-icon { width: 100px; height: 100px; }
    .service-icon img { width: 80px; height: 80px; }
    .services { padding-bottom: 2rem; }
    .services + .clients { padding-top: 1.5rem; }
    .clients + .news { padding-top: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .trusted-by,
    .services,
    .team {
        padding: 3rem 0;
    }
    /* Further tighten on small screens */
    .services { padding-bottom: 1.5rem; }
    .services + .news { padding-top: 1.25rem; }
    
    .trusted-board {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 1rem;
    }
    
    .services-grid.four-column {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-grid.six-column {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .service-icon { width: 84px; height: 84px; }
    .service-icon img { width: 64px; height: 64px; }
    /* .stat-number removed */
    .services { padding-bottom: 1.5rem; }
    .services + .clients { padding-top: 1.25rem; }
    .clients + .news { padding-top: 1.25rem; }
}

/* News Section Styles */
.news {
    padding: 6rem 0;
    background: var(--background-dark);
}

.news-grid {
    max-width: 800px;
    margin: 2rem auto 0;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: rgba(230, 117, 10, 0.02);
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 8px;
}

.news-date {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    min-width: 80px;
}

.news-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.news-title {
    margin: 0;
    flex: 1;
}

.news-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-category {
    display: inline-block;
    background: var(--background-secondary);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

.news-view-all {
    text-align: center;
    margin-top: 3rem;
}

/* Tighter gap between Services and News on the homepage */
.services + .clients { padding-top: 2rem; }
.clients + .news { padding-top: 2rem; }

/* Tighten CTA-to-partners spacing only inside hero */
.hero .news-view-all {
    margin-top: 0.75rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(230, 117, 10, 0.3);
}

.all-news {
    padding: 6rem 0;
    background: var(--background-dark);
    min-height: 60vh;
}

header nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

header nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .news {
        padding: 4rem 0;
    }
    
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .news-content {
        gap: 0.75rem;
    }
    
    .all-news {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .news {
        padding: 3rem 0;
    }
    
    .all-news {
        padding: 3rem 0;
    }
    
    .news-item {
        padding: 0.75rem 0;
    }
    
    .news-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Footer Styles */
footer {
    background: var(--background-dark);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-content p {
    color: var(--text-secondary);
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Companyリンクスタイル - Newsタイトルと同様 */
a.footer-link {
    color: var(--text-primary) !important;
    text-decoration: none !important;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    border: none;
    outline: none;
}

a.footer-link:link {
    color: var(--text-primary) !important;
    text-decoration: none !important;
}

a.footer-link:visited {
    color: var(--text-primary) !important;
    text-decoration: none !important;
}

a.footer-link:hover {
    color: var(--primary-color) !important;
    text-decoration: none !important;
}

a.footer-link:active {
    color: var(--text-primary) !important;
    text-decoration: none !important;
}

.footer-social {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-social:hover {
    color: var(--primary-color);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-image {
    height: 24px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-image:hover {
    opacity: 1;
}

/* Company Page Styles */
.company-info-section {
    padding: 6rem 0;
    background: var(--background-dark);
}

.company-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-background);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.company-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item strong {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.detail-item span {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .company-card {
        padding: 2rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
}

/* Governance Page Styles */
.past-proposals {
    padding: 8rem 0 6rem;
}

.proposals-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.proposal-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.proposal-item:last-child {
    border-bottom: none;
}

.proposal-item:hover {
    background: rgba(230, 117, 10, 0.02);
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 8px;
}

.proposal-date {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    min-width: 80px;
}

.proposal-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.proposal-title {
    margin: 0;
    flex: 1;
}

.proposal-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.proposal-title a:hover {
    color: var(--primary-color);
}

.proposal-protocol {
    display: inline-block;
    background: var(--background-secondary);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

.partners {
    padding: 8rem 0 8rem;
}

@media (max-width: 768px) {
    .past-proposals {
        padding: 6rem 0 4rem;
    }
    
    .proposal-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .proposal-content {
        gap: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .partners {
        padding: 6rem 0 6rem;
    }
}

/* Removed layout overrides to restore original spacing */

/* Contact Page */
.contact-section {
    padding: 6rem 0;
    background: var(--background-dark);
}

.contact-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--background-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 117, 10, 0.15);
}

.form-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.form-success {
    display: none;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-messages { margin-top: 0.5rem; }
.form-success:empty { display: none; }
.form-error { color: #ff6b6b; font-weight: 600; }
.form-error:empty { display: none; }

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