/* kurumahub.site — Automotive Design System */

:root {
    --ats-beige: #f5f5dc;
    --ats-teal: #008080;
    --ats-sky: #87ceeb;
    --ats-gray: #6b7280;
    --ats-white: #ffffff;
    --ats-ink: #1a2e2e;
    --ats-border: rgba(0, 128, 128, 0.12);
    --ats-glass: rgba(255, 255, 255, 0.88);
    --ats-shadow: 0 4px 24px rgba(0, 128, 128, 0.08);
    --ats-shadow-lg: 0 16px 48px rgba(0, 128, 128, 0.12);
    --ats-radius: 16px;
    --ats-radius-lg: 24px;
    --ats-header-h: 72px;
    --ats-font-display: 'Shippori Mincho', serif;
    --ats-font-body: 'Noto Sans JP', sans-serif;
    --ats-transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    --ats-bg: var(--ats-beige);
    --ats-surface: var(--ats-white);
    --ats-text: var(--ats-ink);
    --ats-muted: var(--ats-gray);
    --ats-accent: var(--ats-teal);
    --ats-highlight: var(--ats-sky);
}

[data-theme="dark"] {
    --ats-bg: #0f1c1c;
    --ats-surface: #1a2e2e;
    --ats-text: #eef6f6;
    --ats-muted: #a3b3b3;
    --ats-border: rgba(135, 206, 235, 0.18);
    --ats-glass: rgba(15, 28, 28, 0.92);
    --ats-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --ats-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.45);
    --ats-beige: #152424;
    --ats-teal: #2ec4b6;
    --ats-sky: #7ec8e3;
    /* Keep --ats-white as pure white for text on teal / dark panels */
}

@keyframes ats-fade-up {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes ats-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.ats-body {
    font-family: var(--ats-font-body);
    color: var(--ats-text);
    background: var(--ats-bg);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background var(--ats-transition), color var(--ats-transition);
}
img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
address { font-style: normal; }
ul { list-style: none; }

.ats-container {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ats-skip-link {
    position: absolute; top: -100px; left: 1rem;
    background: var(--ats-teal); color: var(--ats-white);
    padding: 0.75rem 1.5rem; border-radius: 0 0 8px 8px;
    z-index: 9999; font-weight: 700;
}
.ats-skip-link:focus { top: 0; }

/* Header */
.ats-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--ats-header-h);
    transition: background var(--ats-transition), box-shadow var(--ats-transition);
}
.ats-header.is-scrolled {
    background: var(--ats-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--ats-shadow);
    border-bottom: 1px solid var(--ats-border);
}
.ats-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--ats-header-h);
    gap: 1rem;
}
.ats-logo {
    display: flex; align-items: center; gap: 0.65rem;
    flex-shrink: 0; z-index: 1002;
}
.ats-logo__mark {
    width: 36px; height: 36px; flex-shrink: 0;
}
.ats-logo__text { display: flex; flex-direction: column; line-height: 1.3; }
.ats-logo__text strong {
    font-family: var(--ats-font-display);
    font-size: 0.95rem; font-weight: 600; color: var(--ats-teal);
}
.ats-logo__text small {
    font-size: 0.62rem; color: var(--ats-muted); letter-spacing: 0.04em;
}
.ats-header__actions {
    display: flex; align-items: center; gap: 0.5rem;
}
.ats-nav {
    display: flex; align-items: center; gap: 1.5rem;
}
.ats-nav__link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--ats-text);
    transition: color var(--ats-transition);
    position: relative;
}
.ats-nav__link::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--ats-sky);
    transform: scaleX(0); transition: transform var(--ats-transition);
}
.ats-nav__link:hover,
.ats-nav__link.is-active { color: var(--ats-teal); }
.ats-nav__link:hover::after,
.ats-nav__link.is-active::after { transform: scaleX(1); }

/* Light nav over dark hero until scrolled */
@media (min-width: 769px) {
    .ats-header:not(.is-scrolled) .ats-nav__link {
        color: rgba(255, 255, 255, 0.92);
    }
    .ats-header:not(.is-scrolled) .ats-nav__link:hover,
    .ats-header:not(.is-scrolled) .ats-nav__link.is-active {
        color: var(--ats-sky);
    }
}
.ats-header:not(.is-scrolled) .ats-logo__text strong {
    color: #ffffff;
}
.ats-header:not(.is-scrolled) .ats-logo__text small {
    color: rgba(255, 255, 255, 0.72);
}
.ats-header:not(.is-scrolled) .ats-menu-toggle span {
    background: #ffffff;
}

.ats-theme-toggle {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--ats-border);
    border-radius: 50%;
    background: var(--ats-surface);
    color: var(--ats-teal);
    cursor: pointer;
    transition: background var(--ats-transition), transform var(--ats-transition);
}
.ats-theme-toggle:hover { background: var(--ats-sky); color: var(--ats-ink); transform: scale(1.05); }
.ats-theme-toggle .ats-icon-moon { display: none; }
[data-theme="dark"] .ats-theme-toggle .ats-icon-sun { display: none; }
[data-theme="dark"] .ats-theme-toggle .ats-icon-moon { display: block; }

.ats-menu-toggle {
    display: none;
    width: 40px; height: 40px;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 5px; border: none; background: transparent;
    cursor: pointer; z-index: 1002;
}
.ats-menu-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--ats-teal);
    transition: transform var(--ats-transition), opacity var(--ats-transition);
}
.ats-menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ats-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.ats-menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ats-nav-backdrop {
    display: none;
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.4);
    z-index: 999; opacity: 0; transition: opacity var(--ats-transition);
}
.ats-nav-backdrop.is-visible { display: block; opacity: 1; }

@media (max-width: 767px) {
    .ats-menu-toggle { display: flex; }
    .ats-nav {
        position: fixed; top: 0; right: 0;
        width: min(300px, 85vw); height: 100vh; height: 100dvh;
        flex-direction: column; align-items: flex-start;
        padding: calc(var(--ats-header-h) + 2rem) 2rem 2rem;
        background: var(--ats-surface);
        box-shadow: var(--ats-shadow-lg);
        transform: translateX(100%);
        transition: transform var(--ats-transition);
        z-index: 1001;
        gap: 1.25rem;
    }
    .ats-nav.is-open { transform: translateX(0); }
    .ats-nav__link { font-size: 0.9rem; }
}

/* Main */
.ats-main { padding-top: var(--ats-header-h); }

/* Sections */
.ats-section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex; align-items: center;
    padding: 5rem 0;
}
.ats-section--beige { background: var(--ats-beige); }
.ats-section--white { background: var(--ats-surface); }
.ats-section--teal {
    background: linear-gradient(135deg, var(--ats-teal) 0%, #006666 100%);
    color: var(--ats-white);
}
.ats-section--compact { min-height: auto; padding: 4rem 0; }

.ats-section-header {
    text-align: center; max-width: 640px;
    margin: 0 auto 3rem;
}
.ats-section-header--left { text-align: left; margin-left: 0; }
.ats-section-header h2 {
    font-family: var(--ats-font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600; margin-bottom: 0.75rem;
    color: var(--ats-teal);
}
.ats-section--teal .ats-section-header h2 { color: var(--ats-white); }
.ats-section-header p { color: var(--ats-muted); }

.ats-tag {
    display: inline-block;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ats-teal); margin-bottom: 0.75rem;
}
.ats-tag--light { color: var(--ats-sky); }

/* Hero */
.ats-hero {
    position: relative; overflow: hidden;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex; align-items: center;
    margin-top: calc(-1 * var(--ats-header-h));
    padding: calc(var(--ats-header-h) + 1.25rem) 0 2.5rem;
}
.ats-hero__bg {
    position: absolute; inset: 0; z-index: 0;
}
.ats-hero__bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.ats-hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.75) 0%, rgba(26, 46, 46, 0.6) 100%);
}
.ats-hero__content {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem; align-items: center;
    width: 100%;
}
.ats-hero__title {
    font-family: var(--ats-font-display);
    font-size: clamp(1.85rem, 4.2vw, 2.85rem);
    font-weight: 600; line-height: 1.35;
    color: var(--ats-white); margin-bottom: 1rem;
}
.ats-hero__lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem; margin-bottom: 1.5rem; max-width: 520px;
}
.ats-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.ats-hero__visual {
    border-radius: var(--ats-radius-lg);
    overflow: hidden; box-shadow: var(--ats-shadow-lg);
    animation: ats-float 6s ease-in-out infinite;
    max-height: min(58vh, 520px);
}
.ats-hero__visual img {
    width: 100%;
    height: 100%;
    max-height: min(58vh, 520px);
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* Page hero */
.ats-page-hero {
    position: relative; min-height: 50vh;
    display: flex; align-items: flex-end;
    margin-top: calc(-1 * var(--ats-header-h));
    padding: calc(var(--ats-header-h) + 3rem) 0 3rem;
    overflow: hidden;
}
.ats-page-hero__bg { position: absolute; inset: 0; }
.ats-page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.ats-page-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26, 46, 46, 0.85) 0%, rgba(0, 128, 128, 0.4) 100%);
}
.ats-page-hero__content { position: relative; z-index: 2; }
.ats-page-hero h1 {
    font-family: var(--ats-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600; color: var(--ats-white);
    margin-bottom: 0.75rem;
}
.ats-page-hero p { color: rgba(255, 255, 255, 0.85); max-width: 560px; }

/* Buttons */
.ats-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem; padding: 0.85rem 1.75rem;
    font-size: 0.85rem; font-weight: 600;
    border-radius: 999px; border: 2px solid transparent;
    cursor: pointer; transition: all var(--ats-transition);
}
.ats-btn--primary {
    background: var(--ats-teal); color: var(--ats-white);
    border-color: var(--ats-teal);
}
.ats-btn--primary:hover {
    background: #006666; border-color: #006666;
    transform: translateY(-2px); box-shadow: var(--ats-shadow);
}
.ats-btn--outline {
    background: transparent; color: var(--ats-white);
    border-color: rgba(255, 255, 255, 0.6);
}
.ats-btn--outline:hover { background: rgba(255, 255, 255, 0.12); }
.ats-btn--sky {
    background: var(--ats-sky); color: var(--ats-ink);
    border-color: var(--ats-sky);
}
.ats-btn--sky:hover { filter: brightness(1.05); transform: translateY(-2px); }
.ats-btn--glow {
    background: linear-gradient(135deg, var(--ats-teal), #00a0a0);
    color: var(--ats-white);
    border: none;
    box-shadow: 0 4px 24px rgba(0, 128, 128, 0.35), 0 0 40px rgba(135, 206, 235, 0.2);
}
.ats-btn--glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 128, 128, 0.45), 0 0 60px rgba(135, 206, 235, 0.35);
}
.ats-btn--lg { padding: 1rem 2.25rem; }

.ats-tag--glow {
    background: rgba(135, 206, 235, 0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(135, 206, 235, 0.4);
}

/* Cards grid */
.ats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.ats-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ats-grid--4 { grid-template-columns: repeat(4, 1fr); }

.ats-card {
    background: var(--ats-surface);
    border-radius: var(--ats-radius);
    overflow: hidden;
    border: 1px solid var(--ats-border);
    box-shadow: var(--ats-shadow);
    transition: transform var(--ats-transition), box-shadow var(--ats-transition);
}
.ats-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ats-shadow-lg);
}
.ats-card__img {
    aspect-ratio: 16/10; overflow: hidden;
    background: var(--ats-beige);
}
.ats-card__img img {
    width: 100%; height: 100%;
    transition: transform 0.5s var(--ats-transition);
}
.ats-card:hover .ats-card__img img { transform: scale(1.05); }
.ats-card__body { padding: 1.25rem 1.5rem 1.5rem; }
.ats-card__body h3 {
    font-family: var(--ats-font-display);
    font-size: 1.1rem; font-weight: 600;
    color: var(--ats-teal); margin-bottom: 0.5rem;
}
.ats-card__body p {
    font-size: 0.9rem; color: var(--ats-muted);
    margin-bottom: 0.75rem;
}
.ats-card__price {
    font-weight: 700; color: var(--ats-teal);
    font-size: 0.95rem;
}

/* Kuruma lineup — cinematic vehicle showcase */
@keyframes ats-aurora-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.08); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}
@keyframes ats-aurora-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes ats-aurora-kenburns {
    from { transform: scale(1.12); }
    to { transform: scale(1); }
}
@keyframes ats-aurora-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.ats-section--aurora {
    padding: 0;
    overflow: hidden;
    width: 100%;
    min-height: auto;
    background: linear-gradient(135deg, #0a3030 0%, #0d4545 40%, #122828 100%);
}
[data-theme="dark"] .ats-section--aurora {
    background: linear-gradient(135deg, #061818 0%, #0a2c2c 45%, #0d1a1a 100%);
}
.ats-aurora {
    position: relative;
    width: 100%;
    flex: 1 1 100%;
    min-height: auto;
    background: transparent;
}
.ats-aurora__split {
    display: grid;
    grid-template-columns: minmax(320px, 44%) 1fr;
    min-height: clamp(480px, 68vh, 620px);
    width: 100%;
}
.ats-aurora__panel {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.15rem;
    padding: calc(var(--ats-header-h) + 1.25rem) clamp(1.5rem, 3vw, 2.5rem) 2rem;
}
.ats-aurora__visual-wrap {
    position: relative;
    min-height: clamp(480px, 68vh, 620px);
    overflow: hidden;
}
.ats-aurora__info {
    position: relative;
}
.ats-aurora__info-card {
    display: none;
    padding: 1.15rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--ats-radius);
    animation: ats-fade-up 0.5s ease;
}
.ats-aurora__info-card.is-active {
    display: block;
}
.ats-aurora__info-card h3 {
    font-family: var(--ats-font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 600;
    color: var(--ats-white);
    margin-bottom: 0.5rem;
}
.ats-aurora__info-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.ats-aurora__glow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.ats-aurora__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: ats-aurora-drift 12s ease-in-out infinite;
}
.ats-aurora__orb--1 {
    width: 400px; height: 400px;
    top: -10%; left: -5%;
    background: rgba(135, 206, 235, 0.25);
}
.ats-aurora__orb--2 {
    width: 350px; height: 350px;
    bottom: 10%; right: -8%;
    background: rgba(0, 128, 128, 0.3);
    animation-delay: -4s;
}
.ats-aurora__orb--3 {
    width: 280px; height: 280px;
    top: 40%; left: 50%;
    background: rgba(245, 245, 220, 0.08);
    animation-delay: -8s;
}
.ats-aurora__marquee {
    position: absolute;
    top: 2rem;
    left: 0; right: 0;
    overflow: hidden;
    opacity: 0.15;
    pointer-events: none;
}
.ats-aurora__marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: ats-aurora-marquee 40s linear infinite;
    font-family: var(--ats-font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--ats-white);
    white-space: nowrap;
}
.ats-aurora__marquee-dot { color: var(--ats-sky); opacity: 0.6; }
.ats-aurora__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 0.25rem;
}
.ats-aurora__head h2 {
    font-family: var(--ats-font-display);
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 600;
    color: var(--ats-white);
    margin: 0.5rem 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.ats-aurora__head p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
    font-size: 0.95rem;
}
.ats-aurora__head .ats-tag--glow { color: var(--ats-sky); }
.ats-aurora__ring {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}
.ats-aurora__ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ats-aurora__ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 4;
}
.ats-aurora__ring-fill {
    fill: none;
    stroke: url(#auroraGrad);
    stroke: var(--ats-sky);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 213.6;
    stroke-dashoffset: 213.6;
    transition: stroke-dashoffset 0.6s ease;
}
.ats-aurora__ring-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ats-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ats-white);
}
.ats-aurora__theater {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.ats-aurora__visual-wrap .ats-aurora__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.ats-aurora__visual-wrap .ats-aurora__arrow--prev { left: 1.25rem; }
.ats-aurora__visual-wrap .ats-aurora__arrow--next { right: 1.25rem; }
.ats-aurora__visual-wrap .ats-aurora__arrow:hover {
    transform: translateY(-50%) scale(1.08);
}
.ats-aurora__arrow {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    color: var(--ats-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--ats-transition);
    z-index: 5;
}
.ats-aurora__arrow:hover {
    background: var(--ats-sky);
    color: var(--ats-ink);
    border-color: var(--ats-sky);
    transform: scale(1.08);
    box-shadow: 0 0 24px rgba(135, 206, 235, 0.5);
}
.ats-aurora__stage {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.ats-aurora__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
.ats-aurora__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.ats-aurora__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--ats-font-display);
    font-size: clamp(5rem, 18vw, 12rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    letter-spacing: 0.05em;
}
.ats-aurora__visual {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.ats-aurora__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ats-aurora__slide.is-active .ats-aurora__visual img {
    animation: ats-aurora-kenburns 8s ease-out forwards;
}
.ats-aurora__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 48, 48, 0.85) 0%, rgba(10, 48, 48, 0.2) 35%, rgba(10, 30, 30, 0.15) 100%);
    z-index: 2;
}
.ats-aurora__dock {
    display: flex;
    justify-content: flex-start;
    gap: 0.65rem;
    flex-wrap: wrap;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border-radius: var(--ats-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.ats-aurora__chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 999px;
    transition: transform var(--ats-transition), background var(--ats-transition);
    color: rgba(255, 255, 255, 0.7);
}
.ats-aurora__chip:hover { transform: translateY(-4px); color: var(--ats-white); }
.ats-aurora__chip.is-active {
    background: rgba(135, 206, 235, 0.2);
    color: var(--ats-white);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 24px rgba(135, 206, 235, 0.25);
}
.ats-aurora__chip-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: border-color var(--ats-transition), box-shadow var(--ats-transition);
}
.ats-aurora__chip.is-active .ats-aurora__chip-img {
    border-color: var(--ats-sky);
    box-shadow: 0 0 20px rgba(135, 206, 235, 0.5);
}
.ats-aurora__chip-img img { width: 100%; height: 100%; object-fit: cover; }
.ats-aurora__chip-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.ats-aurora__tag {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    background: var(--ats-sky);
    color: var(--ats-ink);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 999px;
    margin-bottom: 0.65rem;
}
.ats-aurora__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.ats-aurora__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ats-sky);
}
.ats-aurora__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ats-white);
    transition: gap var(--ats-transition), color var(--ats-transition);
}
.ats-aurora__link:hover { gap: 0.6rem; color: var(--ats-sky); }
.ats-aurora__footer {
    margin-top: auto;
}

/* About split */
.ats-split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center;
}
.ats-split__img {
    border-radius: var(--ats-radius-lg);
    overflow: hidden; box-shadow: var(--ats-shadow-lg);
}
.ats-split__img img { width: 100%; aspect-ratio: 4/3; }
.ats-split__copy h2 {
    font-family: var(--ats-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--ats-teal); margin-bottom: 1rem;
}
.ats-split__copy p { color: var(--ats-muted); margin-bottom: 1.5rem; }

/* Mission / vision */
.ats-pillar {
    padding: 2rem; background: var(--ats-surface);
    border-radius: var(--ats-radius);
    border: 1px solid var(--ats-border);
    text-align: center;
    transition: transform var(--ats-transition);
}
.ats-pillar:hover { transform: translateY(-4px); }
.ats-pillar__img {
    width: 80px; height: 80px; border-radius: 50%;
    overflow: hidden; margin: 0 auto 1rem;
    border: 3px solid var(--ats-sky);
}
.ats-pillar__img img { width: 100%; height: 100%; }
.ats-pillar h3 {
    font-family: var(--ats-font-display);
    font-size: 1.1rem; color: var(--ats-teal);
    margin-bottom: 0.5rem;
}
.ats-pillar p { font-size: 0.9rem; color: var(--ats-muted); }

.ats-timeline { display: flex; flex-direction: column; gap: 1.5rem; }
.ats-timeline__item {
    display: grid; grid-template-columns: 80px 1fr;
    gap: 1.5rem; align-items: start;
    padding: 1.5rem; background: var(--ats-surface);
    border-radius: var(--ats-radius);
    border-left: 4px solid var(--ats-sky);
}
.ats-timeline__year {
    font-family: var(--ats-font-display);
    font-size: 1.25rem; font-weight: 700;
    color: var(--ats-teal);
}
.ats-timeline__item h3 {
    font-size: 1.05rem; color: var(--ats-teal);
    margin-bottom: 0.35rem;
}
.ats-timeline__item p { font-size: 0.9rem; color: var(--ats-muted); }

/* Stats */
.ats-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; text-align: center;
}
.ats-stat {
    padding: 2rem 1rem;
    background: var(--ats-surface);
    border-radius: var(--ats-radius);
    border: 1px solid var(--ats-border);
}
.ats-stat strong {
    display: block;
    font-family: var(--ats-font-display);
    font-size: 2.25rem; font-weight: 700;
    color: var(--ats-teal); line-height: 1.2;
}
.ats-stat span { font-size: 0.85rem; color: var(--ats-muted); }

/* Process */
.ats-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.ats-step {
    padding: 1.75rem; text-align: center;
    background: var(--ats-surface);
    border-radius: var(--ats-radius);
    border: 1px solid var(--ats-border);
    position: relative;
}
.ats-step__num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--ats-sky); color: var(--ats-ink);
    font-weight: 700; font-size: 0.85rem;
    margin-bottom: 1rem;
}
.ats-step h3 {
    font-size: 1rem; color: var(--ats-teal);
    margin-bottom: 0.5rem;
}
.ats-step p { font-size: 0.85rem; color: var(--ats-muted); }

/* Benefits */
.ats-benefit {
    padding: 2rem; background: var(--ats-surface);
    border-radius: var(--ats-radius);
    border: 1px solid var(--ats-border);
}
.ats-benefit__icon {
    font-size: 0.75rem; font-weight: 700;
    color: var(--ats-sky); letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}
.ats-benefit h3 {
    font-family: var(--ats-font-display);
    font-size: 1.1rem; color: var(--ats-teal);
    margin-bottom: 0.5rem;
}
.ats-benefit p { font-size: 0.9rem; color: var(--ats-muted); }

/* Blog */
.ats-blog-featured {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 2rem; align-items: center;
    background: var(--ats-surface);
    border-radius: var(--ats-radius-lg);
    overflow: hidden;
    border: 1px solid var(--ats-border);
    margin-bottom: 3rem;
}
.ats-blog-featured__img { aspect-ratio: 16/10; }
.ats-blog-featured__img img { width: 100%; height: 100%; }
.ats-blog-featured__body { padding: 2rem; }
.ats-blog-featured__body h2 {
    font-family: var(--ats-font-display);
    font-size: 1.5rem; color: var(--ats-teal);
    margin-bottom: 0.75rem;
}
.ats-blog-featured__meta {
    font-size: 0.78rem; color: var(--ats-muted);
    margin-bottom: 1rem;
}
.ats-blog-featured__meta span {
    display: inline-block; padding: 0.2rem 0.6rem;
    background: var(--ats-sky); color: var(--ats-ink);
    border-radius: 999px; margin-right: 0.5rem;
    font-weight: 600;
}

.ats-tags {
    display: flex; flex-wrap: wrap; gap: 0.75rem;
    justify-content: center;
}
.ats-tag-pill {
    padding: 0.5rem 1.25rem;
    background: var(--ats-surface);
    border: 1px solid var(--ats-border);
    border-radius: 999px;
    font-size: 0.85rem; font-weight: 500;
    color: var(--ats-teal);
    transition: all var(--ats-transition);
}
.ats-tag-pill:hover {
    background: var(--ats-teal); color: var(--ats-white);
    border-color: var(--ats-teal);
}

.ats-newsletter {
    text-align: center; max-width: 560px; margin: 0 auto;
    padding: 3rem; background: var(--ats-surface);
    border-radius: var(--ats-radius-lg);
    border: 1px solid var(--ats-border);
}
.ats-newsletter h2 {
    font-family: var(--ats-font-display);
    font-size: 1.5rem; color: var(--ats-teal);
    margin-bottom: 0.75rem;
}
.ats-newsletter p { color: var(--ats-muted); margin-bottom: 1.5rem; }
.ats-newsletter__form {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    justify-content: center;
}
.ats-newsletter__form input {
    flex: 1; min-width: 200px;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--ats-border);
    border-radius: 999px;
    background: var(--ats-bg);
    color: var(--ats-text);
}
.ats-newsletter__form input:focus {
    outline: none; border-color: var(--ats-teal);
    box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.15);
}

/* Contact */
.ats-contact-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: start;
}
.ats-form label {
    display: block; margin-bottom: 1.25rem;
}
.ats-form label span {
    display: block; font-size: 0.78rem; font-weight: 600;
    color: var(--ats-teal); margin-bottom: 0.35rem;
}
.ats-form input,
.ats-form textarea {
    width: 100%; padding: 0.85rem 1rem;
    border: 1px solid var(--ats-border);
    border-radius: var(--ats-radius);
    background: var(--ats-bg);
    color: var(--ats-text);
    transition: border-color var(--ats-transition);
}
.ats-form input:focus,
.ats-form textarea:focus {
    outline: none; border-color: var(--ats-teal);
    box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.12);
}
.ats-form input.is-invalid,
.ats-form textarea.is-invalid { border-color: #dc2626; }

.ats-notice {
    padding: 1rem 1.25rem; border-radius: var(--ats-radius);
    margin-bottom: 1.5rem; font-size: 0.9rem;
}
.ats-notice--success {
    background: rgba(0, 128, 128, 0.1);
    color: var(--ats-teal);
    border: 1px solid rgba(0, 128, 128, 0.2);
}
.ats-notice--error {
    background: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
    border: 1px solid rgba(220, 38, 38, 0.2);
}
.ats-notice ul { padding-left: 1.25rem; list-style: disc; }

.ats-map {
    border-radius: var(--ats-radius);
    overflow: hidden; aspect-ratio: 4/3;
    border: 1px solid var(--ats-border);
    margin-top: 1.5rem;
}
.ats-map iframe { width: 100%; height: 100%; border: 0; }

.ats-contact-details { margin-top: 1.5rem; }
.ats-contact-details__item {
    margin-bottom: 1rem; padding-bottom: 1rem;
    border-bottom: 1px solid var(--ats-border);
}
.ats-contact-details__item strong {
    display: block; font-size: 0.72rem;
    font-weight: 700; letter-spacing: 0.1em;
    color: var(--ats-teal); margin-bottom: 0.25rem;
}
.ats-contact-details__item p,
.ats-contact-details__item a { font-size: 0.9rem; color: var(--ats-muted); }
.ats-contact-details__item a:hover { color: var(--ats-teal); }

.ats-faq-item {
    padding: 1.5rem; margin-bottom: 1rem;
    background: var(--ats-surface);
    border-radius: var(--ats-radius);
    border: 1px solid var(--ats-border);
}
.ats-faq-item h3 {
    font-size: 1rem; color: var(--ats-teal);
    margin-bottom: 0.5rem;
}
.ats-faq-item p { font-size: 0.9rem; color: var(--ats-muted); }

/* CTA band */
.ats-cta {
    text-align: center; max-width: 640px; margin: 0 auto;
}
.ats-cta--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    align-items: center;
    max-width: none;
    text-align: left;
    margin: 0;
}
.ats-cta h2 {
    font-family: var(--ats-font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--ats-white); margin-bottom: 0.75rem;
}
.ats-cta p { color: rgba(255, 255, 255, 0.85); margin-bottom: 1.25rem; }
.ats-cta__quote {
    position: relative;
    font-style: normal;
    color: rgba(255, 255, 255, 0.92);
    padding: 1.75rem 1.75rem 1.75rem 2.25rem;
    margin: 0;
    border-left: 3px solid var(--ats-sky);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0 var(--ats-radius) var(--ats-radius) 0;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.85;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ats-cta__quote::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem; left: 0.85rem;
    font-family: var(--ats-font-display);
    font-size: 2.5rem; line-height: 1;
    color: var(--ats-sky);
    opacity: 0.6;
}
.ats-cta__quote cite {
    display: block; margin-top: 1rem;
    font-style: normal; font-size: 0.82rem;
    color: var(--ats-sky);
    font-weight: 600;
    letter-spacing: 0.03em;
}
.ats-cta__perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 1rem;
    margin: 0 0 1.75rem;
}
.ats-cta__perks li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
}
.ats-cta__perks li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.55em;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--ats-sky);
    box-shadow: 0 0 10px rgba(135, 206, 235, 0.55);
}
.ats-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}
.ats-cta__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.ats-cta__stat {
    text-align: center;
    padding: 0.85rem 0.5rem;
    border-radius: var(--ats-radius);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.ats-cta__stat strong {
    display: block;
    font-family: var(--ats-font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    color: var(--ats-sky);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
.ats-cta__stat span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
}

/* Footer */
.ats-footer {
    background: var(--ats-beige);
    border-top: 1px solid var(--ats-border);
    padding: 0;
}
.ats-footer__cta {
    background: linear-gradient(135deg, var(--ats-teal) 0%, #006666 100%);
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(135, 206, 235, 0.2);
}
.ats-footer__cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.ats-footer__cta-copy h2 {
    font-family: var(--ats-font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    color: var(--ats-white);
    margin-bottom: 0.35rem;
}
.ats-footer__cta-copy p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
}
.ats-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    padding: 3rem 0 2.5rem;
}
.ats-footer__logo {
    display: flex; align-items: center; gap: 0.6rem;
    margin-bottom: 0.5rem;
}
.ats-footer__logo strong {
    font-family: var(--ats-font-display);
    font-size: 1rem; color: var(--ats-teal);
}
.ats-footer__tagline {
    display: block;
    font-size: 0.78rem; color: var(--ats-muted);
    margin-bottom: 0.85rem;
    font-style: italic;
}
.ats-footer__about {
    font-size: 0.82rem;
    color: var(--ats-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.ats-footer__meta {
    display: flex; flex-direction: column; gap: 0.25rem;
    font-size: 0.72rem; color: var(--ats-muted);
}
.ats-footer__col h3 {
    font-family: var(--ats-font-display);
    font-size: 0.88rem; font-weight: 600;
    color: var(--ats-teal);
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}
.ats-footer__links {
    display: flex; flex-direction: column; gap: 0.55rem;
}
.ats-footer__links a {
    font-size: 0.82rem; color: var(--ats-muted);
    transition: color var(--ats-transition), transform var(--ats-transition);
}
.ats-footer__links a:hover {
    color: var(--ats-teal);
    transform: translateX(3px);
}
.ats-footer__contact {
    font-style: normal;
}
.ats-footer__contact-item {
    margin-bottom: 0.85rem;
}
.ats-footer__contact-item:last-child { margin-bottom: 0; }
.ats-footer__contact-item strong {
    display: block;
    font-size: 0.72rem; font-weight: 700;
    color: var(--ats-teal);
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
}
.ats-footer__contact-item p,
.ats-footer__contact-item a {
    font-size: 0.82rem; color: var(--ats-muted);
    line-height: 1.6;
}
.ats-footer__contact-item a:hover { color: var(--ats-teal); }
.ats-footer__social-block {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--ats-border);
}
.ats-footer__social-label {
    font-size: 0.72rem; color: var(--ats-muted);
    margin-bottom: 0.65rem;
}
.ats-footer__social {
    display: flex; gap: 0.65rem;
}
.ats-social {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--ats-surface);
    border: 1px solid var(--ats-border);
    color: var(--ats-teal);
    transition: all var(--ats-transition);
}
.ats-social:hover {
    background: var(--ats-teal); color: var(--ats-white);
    transform: translateY(-3px);
}
.ats-footer__bottom {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
    padding: 1.25rem 0;
    border-top: 1px solid var(--ats-border);
    font-size: 0.78rem; color: var(--ats-muted);
}
.ats-footer__legal {
    display: flex; gap: 1.25rem; flex-wrap: wrap;
}
.ats-footer__legal a {
    font-size: 0.75rem; color: var(--ats-muted);
    transition: color var(--ats-transition);
}
.ats-footer__legal a:hover { color: var(--ats-teal); }
.ats-back-to-top {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--ats-border);
    border-radius: 50%;
    background: var(--ats-surface);
    color: var(--ats-teal);
    cursor: pointer;
    transition: all var(--ats-transition);
}
.ats-back-to-top:hover {
    background: var(--ats-teal); color: var(--ats-white);
}

/* Reveal animations */
.ats-reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.ats-reveal.is-visible {
    opacity: 1; transform: translateY(0);
}

/* Responsive */
@media (max-width: 1023px) {
    .ats-grid { grid-template-columns: repeat(2, 1fr); }
    .ats-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .ats-stats { grid-template-columns: repeat(2, 1fr); }
    .ats-steps { grid-template-columns: repeat(2, 1fr); }
    .ats-hero__content { grid-template-columns: 1fr; }
    .ats-hero__visual { max-width: 400px; margin: 0 auto; }
    .ats-split { grid-template-columns: 1fr; }
    .ats-blog-featured { grid-template-columns: 1fr; }
    .ats-contact-layout { grid-template-columns: 1fr; }
    .ats-aurora__split { grid-template-columns: 1fr 1fr; }
    .ats-footer__grid { grid-template-columns: 1fr 1fr; }
    .ats-footer__brand { grid-column: 1 / -1; }
    .ats-footer__cta-inner { flex-direction: column; text-align: center; align-items: center; }
    .ats-cta--split {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .ats-cta__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .ats-aurora__split {
        grid-template-columns: 1fr;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }
    .ats-aurora__visual-wrap {
        order: 1;
        min-height: 220px;
        height: 42vw;
        max-height: 340px;
        width: 100%;
        flex-shrink: 0;
    }
    .ats-aurora__panel {
        order: 2;
        padding: 1.25rem 1rem 1.75rem;
    }
    .ats-aurora__head { flex-direction: row; align-items: center; justify-content: space-between; }
    .ats-aurora__head > div { flex: 1; min-width: 0; }
    .ats-aurora__arrow { display: none; }
    .ats-aurora__info { min-height: auto; }
    .ats-aurora__info-card {
        padding: 1rem 1.1rem;
        overflow: hidden;
    }
    .ats-aurora__info-card p {
        word-break: break-word;
    }
    .ats-aurora__meta {
        flex-wrap: wrap;
        gap: 0.65rem;
    }
    .ats-aurora__link {
        margin-left: auto;
        white-space: nowrap;
    }
    .ats-aurora__shade {
        background: linear-gradient(to top, rgba(10, 48, 48, 0.75) 0%, rgba(10, 48, 48, 0.15) 45%, transparent 100%);
    }
    .ats-aurora__marquee { opacity: 0.08; top: 0.5rem; }
    .ats-aurora__footer { padding-top: 0.25rem; }
    .ats-aurora__dock {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .ats-aurora__dock::-webkit-scrollbar { display: none; }
    .ats-aurora__chip { flex-shrink: 0; }
    .ats-grid,
    .ats-grid--2,
    .ats-grid--4 { grid-template-columns: 1fr; }
    .ats-stats { grid-template-columns: 1fr 1fr; }
    .ats-steps { grid-template-columns: 1fr; }
    .ats-footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ats-footer__logo { justify-content: center; }
    .ats-footer__meta { align-items: center; }
    .ats-footer__social { justify-content: center; }
    .ats-footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .ats-footer__legal { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .ats-reveal { opacity: 1; transform: none; }
    .ats-hero__visual { animation: none; }
    .ats-aurora__marquee-track { animation: none; }
    .ats-aurora__orb { animation: none; }
    .ats-aurora__slide.is-active .ats-aurora__visual img { animation: none; }
}
