@charset "UTF-8";

/* ==========================================================================
   Dayos Deep Homage Theme - CSS Variables
   ========================================================================== */
:root {
    /* High Contrast Palette */
    --color-bg: #ffffff;
    --color-offwhite: #f7f7f8;
    /* Very subtle gray background */
    --color-gray-100: #f1f1f3;
    --color-black: #000000;
    /* Pure black */
    --color-black-alpha: rgba(0, 0, 0, 0.9);
    --color-white: #ffffff;

    --color-text: #000000;
    --color-text-gray-dark: #4b4b4b;
    --color-text-gray-medium: #757575;
    --color-text-gray-light: #a3a3a3;

    --color-border: #e2e2e5;
    --color-border-dark: #333333;

    /* Brand Accent Colors (used sparingly) */
    --color-brand-blue: #0047ff;
    /* Electric blue accent */
    --color-brand-green: #00d084;
    --color-brand-yellow: #fde047;
    /* Bright yellow for hover effects */

    /* Typography - Deeply Bold */
    --font-heading: 'Inter', 'Noto Sans JP', sans-serif;
    --font-body: 'Inter', 'Noto Sans JP', sans-serif;

    /* Layout */
    --container-width: 1440px;
    /* Wide container */
    --container-width-sm: 960px;
    --border-radius: 12px;
    /* Slightly sharper rounded corners than before */

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --spacing-xxl: 12rem;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-normal: 0.4s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

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

ul {
    list-style: none;
}

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

/* Typography Globals */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-black);
}

/* Utility Classes */
.text-black {
    color: var(--color-black) !important;
}

.text-white {
    color: var(--color-white) !important;
}

.text-gray-dark {
    color: var(--color-text-gray-dark) !important;
}

.text-gray-medium {
    color: var(--color-text-gray-medium) !important;
}

.text-gray-light {
    color: var(--color-text-gray-light) !important;
}

.text-blue {
    color: var(--color-brand-blue) !important;
}

.bg-black {
    background-color: var(--color-black) !important;
}

.bg-offwhite {
    background-color: var(--color-offwhite) !important;
}

.bg-gray-100 {
    background-color: var(--color-gray-100) !important;
}

.bg-white {
    background-color: var(--color-white) !important;
}

.bg-brand-blue {
    background-color: var(--color-brand-blue) !important;
}

.bg-brand-blue-light {
    background-color: #f4f7fc !important;
    /* 淡いグレー感のある青 */
}

.bg-black-alpha {
    background-color: var(--color-black-alpha) !important;
}

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

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

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mt-xl {
    margin-top: var(--spacing-xl);
}

.mt-auto {
    margin-top: auto;
}

.py-md {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.py-lg {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

.py-xl {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.py-xxl {
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xxl);
}

.pt-sm {
    padding-top: var(--spacing-sm);
}

.pt-md {
    padding-top: var(--spacing-md);
}

.pt-xl {
    padding-top: var(--spacing-xl);
}

.pb-md {
    padding-bottom: var(--spacing-md);
}

.border-y {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.border-t {
    border-top: 1px solid var(--color-border);
}

.border-bottom {
    border-bottom: 1px solid var(--color-border);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.border-white-20 {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.w-50 {
    width: 50%;
}

.w-70 {
    width: 70%;
}

.w-90 {
    width: 90%;
}

.max-w-xs {
    max-width: 300px;
}

.relative {
    position: relative;
}

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

.overflow-hidden {
    overflow: hidden;
}

.flex {
    display: flex;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

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

/* ==========================================================================
   CEO Message Section (About Us Page)
   ========================================================================== */
.ceo-message-container {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.ceo-message-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: stretch;
}

.ceo-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 460px;
    overflow: hidden;
}

.ceo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.ceo-image-wrapper:hover .ceo-image {
    transform: scale(1.05);
}

.ceo-name-overlay {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--color-white);
    z-index: 2;
}

.ceo-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.ceo-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ceo-role {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.ceo-text-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: #fafafb;
}

.quote-icon {
    color: var(--color-border);
    margin-bottom: 2rem;
    opacity: 0.5;
}

.ceo-message-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.ceo-message-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-gray-dark);
    margin-bottom: 3rem;
}

.ceo-signature-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.ceo-signature-title {
    font-size: 0.875rem;
    color: var(--color-text-gray-medium);
    margin-top: 0.25rem;
}

/* Mobile responsive for CEO Section */
@media (max-width: 968px) {
    .ceo-message-grid {
        grid-template-columns: 1fr;
    }
    
    .ceo-image-wrapper {
        min-height: 400px;
    }
    
    .ceo-text-content {
        padding: 3rem 2rem !important;
    }
}

.company-profile-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: stretch;
}

@media (max-width: 968px) {
    .company-profile-grid {
        grid-template-columns: 1fr;
    }
}

.flex-align-center {
    display: flex;
    align-items: center;
}

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

.gap-sm {
    gap: var(--spacing-sm);
}

.gap-md {
    gap: var(--spacing-md);
}

.gap-lg {
    gap: var(--spacing-lg);
}

.inline-block {
    display: inline-block;
}

.block {
    display: block;
}

.font-bold {
    font-weight: 700;
}

.m-0 {
    margin: 0;
}

.text-sm {
    font-size: 0.875rem;
}

.text-md {
    font-size: 1.25rem;
}

.text-xs {
    font-size: 0.75rem;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-sm {
    max-width: var(--container-width-sm);
}

/* ==========================================================================
   Typography Classes (Dayos Massive Type Style)
   ========================================================================== */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.massive-text {
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.type-compressed {
    letter-spacing: -0.08em;
    transform: scaleY(1.1);
    transform-origin: top;
}

.hero-headline {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.4;
    font-weight: 500;
}

.lead-text {
    font-size: clamp(1.25rem, 3vw, 2rem);
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.section-heading-desc {
    font-size: 1.5rem;
    font-weight: 500;
}

.balance-text {
    text-wrap: balance;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    border-radius: 9999px;
    /* Fully rounded pill */
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #222;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-black);
    border-color: var(--color-black);
}

.btn-outline:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-black);
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

/* Hover Yellow Effects (User Requested) */
.hover-yellow {
    transition: all var(--transition-fast) !important;
}

.hover-yellow:hover {
    background-color: var(--color-brand-yellow) !important;
    color: var(--color-black) !important;
    border-color: var(--color-brand-yellow) !important;
}

.hover-yellow-text {
    transition: color var(--transition-fast) !important;
}

.hover-yellow-text:hover {
    color: var(--color-brand-yellow) !important;
}

.hover-yellow-bg {
    transition: background-color var(--transition-fast) !important;
}

.hover-yellow-bg:hover {
    background-color: rgba(253, 224, 71, 0.2) !important;
    /* Subtle yellow transparent bg */
}

/* Link with Arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: var(--color-black);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    gap: 0.5rem;
}

.link-arrow svg {
    transition: transform var(--transition-fast);
}

.link-arrow:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Header Navbar
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
    padding: 1rem 0;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    padding: 0.75rem 0;
    border-bottom-color: var(--color-border);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    color: var(--color-black);
}

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

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-gray-dark);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.nav-link:hover .chevron {
    transform: rotate(180deg);
}

.chevron {
    transition: transform var(--transition-fast);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding-top: 10rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

/* ===  Hero Background Animation === */
.hero-bg-anim {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-grid-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.08) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.22;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #7c3aed, #4f46e5);
    top: -20%;
    left: -10%;
    animation: orbDrift1 14s infinite alternate ease-in-out;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #06b6d4, #3b82f6);
    top: -10%;
    right: -8%;
    animation: orbDrift2 18s infinite alternate ease-in-out;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #f472b6, #a855f7);
    bottom: -5%;
    left: 30%;
    animation: orbDrift3 12s infinite alternate ease-in-out;
}

@keyframes orbDrift1 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(80px, 50px) scale(1.1); }
    100% { transform: translate(30px, 100px) scale(0.95); }
}

@keyframes orbDrift2 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(-60px, 60px) scale(1.05); }
    100% { transform: translate(-100px, 20px) scale(1.15); }
}

@keyframes orbDrift3 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(40px, -50px) scale(0.9); }
    100% { transform: translate(-60px, -20px) scale(1.1); }
}

.hero-graphic-box {
    width: 100%;
    max-width: 900px;
    height: 400px;
    background: var(--color-offwhite);
    border-radius: 24px;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Abstract UI Elements for visual interest */
.abstract-pulse-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 71, 255, 0.05) 0%, transparent 70%);
}

.abstract-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.floating-badge {
    position: absolute;
    background: var(--color-white);
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.badge-2 {
    bottom: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

/* Mock Dashboard (Hero) */
.mock-dashboard {
    position: absolute;
    width: 75%;
    height: 75%;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 5;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.hero-graphic-box:hover .mock-dashboard {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.mock-header {
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    gap: 1rem;
    background: #fafafa;
}

.mock-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.mock-body {
    flex-grow: 1;
    padding: 1.5rem;
    background: #fcfcfd;
}

.mock-sidebar {
    width: 25%;
    padding-right: 1rem;
}

.mock-content {
    flex-grow: 1;
}

.mock-card {
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.justify-between {
    justify-content: space-between;
}

.p-sm {
    padding: 0.75rem;
}

.w-100 {
    width: 100%;
}

.w-20 {
    width: 20%;
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}

.w-60 {
    width: 60%;
}

.w-80 {
    width: 80%;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.bg-green {
    background: var(--color-brand-green);
}

.bg-blue {
    background: var(--color-brand-blue);
}

@keyframes float {

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

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

/* ==========================================================================
   Logo Marquee
   ========================================================================== */
.section-micro-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-gray-medium);
}

.logo-marquee-section {
    padding: 3rem 0;
    overflow: hidden;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-offwhite), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-offwhite), transparent);
}

.marquee-content {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
    align-items: center;
}

.fake-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--color-text-gray-light);
    letter-spacing: -0.05em;
    opacity: 0.6;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.marquee-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0);
    opacity: 0.35;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-item:hover .marquee-logo {
    filter: grayscale(0%) brightness(1);
    opacity: 0.85;
}

.marquee-logo-strip {
    height: 52px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-25%); }
}

/* ==========================================================================
   Platform Bento Cards
   ========================================================================== */
.bento-layout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.card-col-span-2 {
    grid-column: span 2;
}

.card-col-span-1 {
    grid-column: span 1;
}

.dayos-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: unset;
    transition: transform var(--transition-normal);
}

.dayos-card:hover {
    transform: translateY(-8px);
}

.card-dark {
    background-color: #1a1a1a;
    border: 1px solid #333;
}

.card-light {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
}

.card-purple {
    background-color: #1a0a2e;
    border: 1px solid #2d1a4a;
}

.card-blue {
    background-color: #021d3d;
    border: 1px solid #0a3560;
}

.card-inner {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 2;
}

.card-pretext {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.card-headline {
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.card-dark .card-headline {
    color: var(--color-white);
}

.card-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 90%;
}

.card-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
}

.card-dark .card-learn-more {
    color: var(--color-white);
}

.card-learn-more svg {
    transition: transform var(--transition-fast);
}

.dayos-card:hover .card-learn-more svg {
    transform: translateX(6px);
}

/* Visual Elements in Cards */
.bg-gradient-blue {
    background: radial-gradient(circle at bottom right, rgba(0, 71, 255, 0.2) 0%, transparent 60%);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 2rem;
}

.mock-ui-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    width: 250px;
    backdrop-filter: blur(4px);
}

.mock-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.shape-cluster {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 12px;
}

.shape-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    top: 20%;
    left: 30%;
}

.block-black {
    background: var(--color-black);
}

.shape-square {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    position: absolute;
    bottom: 10%;
    right: 20%;
}

.block-outline {
    border: 4px solid var(--color-black);
    background: transparent;
}


/* ==========================================================================
   Two Column Sticky Layout (Use Cases)
   ========================================================================== */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.sticky-col {
    position: sticky;
    top: 6rem;
    /* below header */
}

.use-case-item {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}

.use-case-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.use-case-desc {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Company Message & Profile
   ========================================================================== */
.ceo-message-box {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.company-profile-box {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.company-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-black);
    background: linear-gradient(var(--color-white), var(--color-white)) padding-box,
        linear-gradient(45deg, #4f46e5, #ec4899) border-box;
    border: 2.5px solid transparent;
    width: fit-content;
}

.company-info-list {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    color: var(--color-text-gray-dark);
}

.info-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem 0;
    white-space: nowrap;
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-row dt {
    width: 180px;
    flex-shrink: 0;
    font-weight: 700;
    color: var(--color-black);
}

.info-row dd {
    flex: 1;
    margin: 0;
    color: var(--color-text-gray-dark);
    padding-left: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        white-space: normal;
        padding: 1rem 0;
    }

    .info-row dt {
        width: 100%;
    }

    .info-row dd {
        width: 100%;
        padding-left: 0;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem;
}

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

.bg-footer-dark {
    background-color: #222222 !important;
}

.footer-heading-strong {
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .footer-grid-custom {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

.footer-logo .logo-text {
    font-size: 2rem;
    color: var(--color-white);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.social-icon:hover {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.footer-heading {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a {
    color: var(--color-text-gray-light);
}

.footer-links-list a:hover {
    color: var(--color-white);
}


/* ==========================================================================
   Animations
   ========================================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

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

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (min-width: 768px) {
    .md-grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
        display: grid;
    }
}

@media (max-width: 1024px) {
    .bento-layout-grid {
        grid-template-columns: 1fr;
    }

    .card-col-span-2 {
        grid-column: span 1;
    }

    .two-col-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sticky-col {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
    }

    .hero-headline {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --spacing-xxl: 6rem;
    }

    .header-btn-login,
    .header-btn-demo {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        z-index: 1001;
    }

    .menu-toggle span {
        width: 100%;
        height: 2px;
        background: var(--color-black);
        transition: all 0.3s;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-white);
        padding-top: 5rem;
    }

    .nav.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .hero-section {
        padding-top: 8rem;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .massive-text {
        font-size: 3rem;
    }

    .footer-links-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}