@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

:root {
    --linen-pure: #FCFAF0;
    --solvent-mist: #F2EFE9;
    --fabric-light: #EAE8E4;
    --deep-ink: #1A2128;
    --fiber-gray: #2A3138;
    --mint-teal: #448797;
    --deep-aqua: #286867;
    --white: #FFFFFF;
    --organic-radius-min: 22px;
    --organic-radius-max: 48px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.92;
    color: var(--fiber-gray);
    background-color: var(--linen-pure);
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

a {
    color: var(--deep-aqua);
    text-decoration: none;
    transition: color 0.30s ease;
}

a:hover {
    color: var(--mint-teal);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: var(--deep-ink);
}

h1 {
    font-size: clamp(2.4rem, 8vw, 10rem);
    line-height: 0.76;
    letter-spacing: 0.004em;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    line-height: 1.3;
}

h4 {
    font-size: 1.1rem;
    line-height: 1.4;
}

.tech-text {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: 13px;
    color: var(--deep-ink);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    color: var(--deep-ink);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--mint-teal), var(--deep-aqua));
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 14px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(68, 145, 135, 0.22);
    transition: all 0.38s ease-out;
    min-height: 44px;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(68, 145, 135, 0.32);
    color: var(--white);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(252, 250, 248, 0.94);
    color: var(--deep-ink);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 13px;
    border: 1px solid rgba(68, 145, 135, 0.25);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.30s ease;
    min-height: 44px;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--mint-teal);
    color: var(--white);
    border-color: var(--mint-teal);
}

.mesh-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(58px);
    animation: meshBreath 32s ease-in-out infinite;
}

.mesh-blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(68, 145, 135, 0.045);
    top: 10%;
    left: 5%;
    animation-duration: 32s;
}

.mesh-blob-2 {
    width: 350px;
    height: 350px;
    background: rgba(98, 175, 165, 0.035);
    top: 40%;
    right: 10%;
    animation-duration: 38s;
    animation-delay: -8s;
}

.mesh-blob-3 {
    width: 300px;
    height: 300px;
    background: rgba(78, 125, 145, 0.03);
    bottom: 20%;
    left: 20%;
    animation-duration: 44s;
    animation-delay: -16s;
}

.mesh-blob-4 {
    width: 280px;
    height: 280px;
    background: rgba(148, 195, 185, 0.025);
    top: 60%;
    left: 60%;
    animation-duration: 36s;
    animation-delay: -24s;
}

.mesh-blob-5 {
    width: 320px;
    height: 320px;
    background: rgba(68, 145, 135, 0.04);
    bottom: 10%;
    right: 30%;
    animation-duration: 40s;
    animation-delay: -12s;
}

@keyframes meshBreath {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.6;
    }
    25% {
        transform: scale(1.1) translate(10px, -15px);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05) translate(-5px, 10px);
        opacity: 0.7;
    }
    75% {
        transform: scale(1.15) translate(-15px, -10px);
        opacity: 0.85;
    }
}

.organic-card {
    background: rgba(252, 250, 248, 0.96);
    border: 1px solid rgba(68, 145, 135, 0.12);
    border-radius: var(--organic-radius-min);
    padding: 28px;
    box-shadow: 0 8px 32px rgba(68, 145, 135, 0.08);
    transition: all 0.30s ease;
    position: relative;
    z-index: 1;
}

.organic-card:hover {
    transform: scale(1.02);
    z-index: 96;
    box-shadow: 0 16px 48px rgba(68, 145, 135, 0.14);
    border-color: rgba(68, 145, 135, 0.25);
}

.organic-card-elevated {
    border-radius: var(--organic-radius-max);
}

.sticky-section {
    position: relative;
    transition: all 0.46s ease-out;
}

.sticky-section.overlap {
    margin-top: -42px;
    z-index: 2;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.bento-item {
    background: rgba(252, 250, 248, 0.96);
    border: 1px solid rgba(68, 145, 135, 0.12);
    border-radius: var(--organic-radius-min);
    padding: 24px;
    transition: all 0.30s ease;
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    z-index: 96;
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(68, 145, 135, 0.14);
    border-color: rgba(68, 145, 135, 0.25);
}

.bento-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-item-small {
    grid-column: span 1;
    grid-row: span 1;
}

.node-graph {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.node-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 28px;
    background: rgba(252, 250, 248, 0.96);
    border: 1px solid rgba(68, 145, 135, 0.12);
    border-radius: var(--organic-radius-min);
    transition: all 0.30s ease;
}

.node-item:hover {
    z-index: 96;
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(68, 145, 135, 0.14);
}

.node-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mint-teal), var(--deep-aqua));
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.node-content {
    flex: 1;
}

.marquee-container {
    overflow: hidden;
    padding: 32px 0;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(252, 250, 248, 0.96);
    border: 1px solid rgba(68, 145, 135, 0.12);
    border-radius: var(--organic-radius-min);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 14px;
    color: var(--deep-ink);
    white-space: nowrap;
}

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

.flex-grow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.flex-card {
    background: rgba(252, 250, 248, 0.96);
    border: 1px solid rgba(68, 145, 135, 0.12);
    border-radius: var(--organic-radius-min);
    padding: 32px;
    transition: all 0.30s ease;
    min-height: 220px;
}

.flex-card:hover {
    flex-grow: 1.26;
    z-index: 96;
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(68, 145, 135, 0.14);
}

.accordion-item {
    background: rgba(252, 250, 248, 0.96);
    border: 1px solid rgba(68, 145, 135, 0.12);
    border-radius: var(--organic-radius-min);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.30s ease;
}

.accordion-item:hover {
    z-index: 96;
    border-color: rgba(68, 145, 135, 0.25);
}

.accordion-item.active {
    border-left: 3px solid var(--mint-teal);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.30s ease;
}

.accordion-header:hover {
    background: rgba(68, 145, 135, 0.04);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--mint-teal);
    transition: transform 0.40s ease-out;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.40s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-body {
    padding: 0 24px 20px 24px;
    color: var(--fiber-gray);
    line-height: 1.8;
}

.carousel-3d {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    perspective: 1000px;
    padding: 40px 0;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-card {
    background: rgba(252, 250, 248, 0.96);
    border: 1px solid rgba(68, 145, 135, 0.12);
    border-radius: var(--organic-radius-min);
    padding: 28px;
    transition: all 0.40s ease;
    width: 300px;
    flex-shrink: 0;
}

.carousel-card.active {
    transform: scale(1.15) rotateY(0deg);
    z-index: 100;
    box-shadow: 0 20px 60px rgba(68, 145, 135, 0.18);
}

.carousel-card.side {
    transform: scale(0.85) rotateY(18deg);
    opacity: 0.7;
}

.carousel-card:hover {
    z-index: 96;
}

.carousel-prev, .carousel-next {
    z-index: 200 !important;
}

.review-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 2px solid rgba(68, 145, 135, 0.2);
}

.team-card {
    background: rgba(252, 250, 248, 0.96);
    border: 1px solid rgba(68, 145, 135, 0.12);
    border-radius: var(--organic-radius-min);
    padding: 28px;
    text-align: center;
    transition: all 0.30s ease;
    cursor: grab;
}

.team-card:active {
    cursor: grabbing;
}

.team-card:hover {
    z-index: 96;
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(68, 145, 135, 0.14);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 2px solid rgba(68, 145, 135, 0.2);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 88px 96px;
}

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

.hero-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--fiber-gray);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(68, 145, 135, 0.08);
    border: 1px solid rgba(68, 145, 135, 0.15);
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--deep-ink);
    margin-bottom: 24px;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.organic-frame {
    position: relative;
    border-radius: 22px 48px;
    border: 1px solid rgba(68, 145, 135, 0.12);
    box-shadow: 0 12px 32px rgba(68, 145, 135, 0.14);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(68, 145, 135, 0.03), rgba(40, 104, 103, 0.05));
}

.organic-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounceIndicator 2s ease-in-out infinite;
}

@keyframes bounceIndicator {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid rgba(68, 145, 135, 0.2);
    border-radius: var(--organic-radius-min);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--deep-ink);
    transition: all 0.30s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--mint-teal);
    box-shadow: 0 0 0 3px rgba(68, 145, 135, 0.1);
}

.form-input::placeholder {
    color: rgba(42, 49, 56, 0.5);
}

.form-label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--deep-ink);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.form-group {
    margin-bottom: 20px;
}

textarea.form-input {
    min-height: 140px;
    resize: vertical;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232A3138' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9998;
    max-width: 420px;
    background: var(--white);
    border: 1px solid rgba(68, 145, 135, 0.15);
    border-radius: var(--organic-radius-min);
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.cookie-title {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-ink);
    margin-bottom: 12px;
}

.cookie-text {
    font-size: 13px;
    color: var(--fiber-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.30s ease;
    border: none;
    min-height: 40px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--mint-teal), var(--deep-aqua));
    color: var(--white);
}

.cookie-btn-decline {
    background: rgba(68, 145, 135, 0.08);
    color: var(--deep-ink);
    border: 1px solid rgba(68, 145, 135, 0.2);
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-categories {
    margin: 12px 0;
}

.cookie-category {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--fiber-gray);
}

.cookie-category input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--mint-teal);
}

.floating-dock {
    position: fixed;
    top: 20px;
    left: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(252, 250, 248, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(68, 145, 135, 0.10);
    border-radius: 20px 32px;
    box-shadow: 0 20px 56px rgba(68, 145, 135, 0.14);
    transition: all 0.38s ease-out;
    min-width: 620px;
}

.floating-dock.scrolled {
    top: 12px;
    padding: 10px 16px;
}

.dock-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dock-domain {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 9px;
    color: var(--deep-ink);
    letter-spacing: 0.10em;
}

.dock-company {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 8px;
    color: var(--fiber-gray);
    letter-spacing: 0.04em;
    margin-top: 1px;
}

.dock-right {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.dock-nav {
    display: flex;
    gap: 14px;
}

.dock-link {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: 10px;
    color: var(--fiber-gray);
    cursor: pointer;
    transition: all 0.26s ease;
    white-space: nowrap;
}

.dock-link:hover {
    color: var(--mint-teal);
    scale: 1.02;
}

.dock-link.active {
    color: var(--mint-teal);
    font-weight: 500;
}

.dock-cta {
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--mint-teal), var(--deep-aqua));
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 9px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(68, 145, 135, 0.22);
    cursor: pointer;
    transition: all 0.30s ease;
    white-space: nowrap;
}

.dock-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(68, 145, 135, 0.30);
}

.hamburger-menu {
    display: none;
    position: fixed;
    top: 12px;
    right: 20px;
    z-index: 9999;
    width: 44px;
    height: 44px;
    background: rgba(252, 250, 248, 0.99);
    border: 1px solid rgba(68, 145, 135, 0.10);
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.hamburger-menu span {
    width: 20px;
    height: 2px;
    background: var(--deep-ink);
    transition: all 0.30s ease;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-bottom-strip {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 52px;
    background: rgba(252, 250, 248, 0.99);
    border-top: 1px solid rgba(68, 145, 135, 0.10);
    border-radius: 12px 12px 0 0;
    z-index: 9998;
    padding: 0 16px;
    align-items: center;
    justify-content: space-between;
}

.mobile-strip-domain {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 9px;
    color: var(--deep-ink);
}

.mobile-strip-company {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 8px;
    color: var(--fiber-gray);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    background: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    max-height: 70vh;
    overflow-y: auto;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav-item {
    display: block;
    padding: 16px 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    color: var(--deep-ink);
    text-align: center;
    border-bottom: 1px solid rgba(68, 145, 135, 0.08);
    cursor: pointer;
    transition: color 0.30s ease;
}

.mobile-nav-item:hover {
    color: var(--mint-teal);
}

.mobile-nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--fiber-gray);
    cursor: pointer;
}

.site-footer {
    background: var(--fabric-light);
    border-top: 2px solid var(--mint-teal);
    padding: 64px 88px 32px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    font-size: 28px;
}

.footer-logo-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--deep-ink);
}

.footer-description {
    font-size: 13px;
    color: var(--fiber-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-heading {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    color: var(--deep-ink);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: var(--fiber-gray);
    transition: color 0.30s ease;
}

.footer-links a:hover {
    color: var(--mint-teal);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--fiber-gray);
}

.footer-contact-icon {
    color: var(--mint-teal);
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(68, 145, 135, 0.15);
}

.footer-copyright {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--fiber-gray);
    margin-bottom: 8px;
}

.footer-special {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--mint-teal);
    letter-spacing: 0.05em;
}

.page-hero {
    min-height: 52vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 88px 64px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.section-spacing {
    padding: 80px 88px;
}

.section-spacing-compact {
    padding: 60px 88px;
}

.lens-cursor {
    position: fixed;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.16s ease-out;
}

.lens-cursor.active {
    opacity: 1;
}

.lens-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(68, 145, 135, 0.4);
    box-shadow: 0 0 20px rgba(68, 145, 135, 0.2);
    backdrop-filter: none;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--mint-teal), var(--deep-aqua));
    opacity: 0.3;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background: rgba(252, 250, 248, 0.96);
    border: 1px solid rgba(68, 145, 135, 0.12);
    border-radius: var(--organic-radius-min);
    transition: all 0.30s ease;
}

.process-step:hover {
    z-index: 96;
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(68, 145, 135, 0.14);
}

.process-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mint-teal), var(--deep-aqua));
    color: var(--white);
    font-size: 24px;
    border-radius: var(--organic-radius-min);
    flex-shrink: 0;
}

.process-content h4 {
    margin-bottom: 8px;
}

.process-content p {
    font-size: 13px;
    line-height: 1.7;
}

.stagger-animation {
    animation: staggerFadeIn 0.60s ease-out forwards;
    opacity: 0;
}

@keyframes staggerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.char-animate {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) scale(0.72);
    animation: charSlideUp 0.50s ease-out forwards;
}

@keyframes charSlideUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes elasticBounce {
    0% {
        transform: translateY(20px) scale(0.72);
        opacity: 0;
    }
    60% {
        transform: translateY(-8px) scale(1.02);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.elatic-bounce {
    animation: elasticBounce 0.60s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.60s ease-out 0.4s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--organic-radius-min);
    overflow: hidden;
    border: 1px solid rgba(68, 145, 135, 0.12);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.validation-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.validation-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 6px;
    display: none;
}

.validation-message.show {
    display: block;
}

.success-message {
    text-align: center;
    padding: 48px 24px;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.success-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    color: var(--deep-ink);
    margin-bottom: 16px;
}

.success-text {
    font-size: 15px;
    color: var(--fiber-gray);
    line-height: 1.8;
}

.hidden {
    display: none !important;
}

@media (max-width: 1024px) {
    .floating-dock {
        min-width: 500px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flex-grow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .floating-dock {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .mobile-bottom-strip {
        display: flex;
    }
    
    .hero-section {
        padding: 72px 24px 120px;
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .page-hero {
        padding: 80px 24px 48px;
        min-height: auto;
    }
    
    .section-spacing,
    .section-spacing-compact {
        padding: 48px 24px;
    }
    
    .site-footer {
        padding: 48px 24px 80px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-item-large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .flex-grow-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-3d {
        flex-direction: column;
        gap: 16px;
    }
    
    .carousel-card {
        width: 100%;
        max-width: 320px;
    }
    
    .carousel-card.side {
        display: none;
    }
    
    .cookie-banner {
        left: 12px;
        right: 12px;
        max-width: none;
    }
    
    h1 {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    .organic-card {
        padding: 20px;
    }
    
    .bento-item {
        padding: 20px;
    }
    
    .flex-card {
        padding: 24px;
    }
    
    .carousel-card {
        padding: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .map-container {
        height: 280px;
    }
}