:root {
    --theme-bg-primary: #FDFBF7;
    --theme-bg-secondary: #F7F4ED;
    --theme-bg-card: #FFFFFF;
    --theme-bg-dark: #1a1a2e;
    --theme-text-primary: #1a1a2e;
    --theme-text-secondary: #5a5a6e;
    --theme-text-muted: #8a8a9a;
    --theme-accent-primary: #7c3aed;
    --theme-accent-secondary: #a78bfa;
    --theme-accent-warm: #f59e0b;
    --theme-accent-green: #10b981;
    --theme-accent-rose: #e11d48;
    --theme-gradient-primary: linear-gradient(135deg, #7c3aed 0%, #a78bfa 50%, #c4b5fd 100%);
    --theme-gradient-warm: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --theme-border-subtle: rgba(26, 26, 46, 0.08);
    --theme-border-medium: rgba(26, 26, 46, 0.12);
    --theme-shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
    --theme-shadow-md: 0 8px 24px rgba(26, 26, 46, 0.08);
    --theme-shadow-lg: 0 24px 48px rgba(26, 26, 46, 0.12);
    --theme-shadow-glow: 0 8px 32px rgba(124, 58, 237, 0.2);
    --theme-font-display: 'Crimson Pro', Georgia, serif;
    --theme-font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --theme-font-mono: 'JetBrains Mono', monospace;
    --theme-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--theme-font-body);
    background: var(--theme-bg-primary);
    color: var(--theme-text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.4;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
}

.layout-frame {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}

.page-header {
    padding: 24px 0;
    position: relative;
    z-index: 100;
}

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

.wordmark {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--theme-text-primary);
}

.wordmark__icon {
    width: 40px;
    height: 40px;
    background: var(--theme-gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--theme-shadow-glow);
}

.wordmark__icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.wordmark__text {
    font-family: var(--theme-font-display);
    font-size: 1.35rem;
    font-weight: 600;
}

.wordmark__text span {
    background: var(--theme-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan__hero {
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}

.plan__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(124, 58, 237, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.opening__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    margin-bottom: 24px;
    animation: motion-fade-in-up 0.6s var(--theme-ease-out-expo) both;
}

.opening__badge-icon {
    font-size: 1rem;
}

.opening__badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--theme-accent-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.opening__title {
    font-family: var(--theme-font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: motion-fade-in-up 0.6s var(--theme-ease-out-expo) 0.1s both;
    position: relative;
}

.opening__title em {
    font-style: italic;
    background: var(--theme-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.opening__subtitle {
    font-size: 1.1rem;
    color: var(--theme-text-secondary);
    max-width: 550px;
    margin: 0 auto;
    animation: motion-fade-in-up 0.6s var(--theme-ease-out-expo) 0.2s both;
}

@keyframes motion-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan__section {
    padding: 40px 0 100px;
}

.plan__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.plan__card {
    background: var(--theme-bg-card);
    border: 1px solid var(--theme-border-subtle);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    transition: all 0.4s var(--theme-ease-out-expo);
    animation: motion-fade-in-up 0.6s var(--theme-ease-out-expo) both;
    color: var(--theme-text-primary);
}

.plan__card:nth-child(1) { animation-delay: 0.1s; }

.plan__card:nth-child(2) { animation-delay: 0.2s; }

.plan__card:nth-child(3) { animation-delay: 0.3s; }

.plan__card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--theme-shadow-md);
}

.plan__card.is-featured {
    border-color: var(--theme-accent-primary);
    box-shadow: var(--theme-shadow-glow);
}

.plan__card.is-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--theme-gradient-primary);
    border-radius: 20px 20px 0 0;
}

.plan__popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--theme-gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.plan__popular.plan__best-value {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.plan__name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--theme-text-primary);
}

.plan__price {
    margin: 16px 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan__currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--theme-text-primary);
}

.plan__amount {
    font-family: var(--theme-font-display);
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1;
    color: var(--theme-text-primary);
}

.plan__period-inline {
    font-size: 1.1rem;
    color: var(--theme-text-muted);
    margin-left: 4px;
}

.plan__desc {
    font-size: 0.9rem;
    color: var(--theme-text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.plan__desc strong {
    color: var(--theme-text-primary);
}

.plan__note-text {
    font-size: 0.85rem;
    color: var(--theme-text-muted);
    margin-bottom: 20px;
}

.plan__features {
    list-style: none;
    margin-top: 28px;
}

.plan__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--theme-text-secondary);
}

.plan__features li svg {
    width: 20px;
    height: 20px;
    color: var(--theme-accent-green);
    flex-shrink: 0;
}

.plan__cta {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: all 0.3s var(--theme-ease-out-expo);
    cursor: pointer;
    border: none;
}

.plan__cta.is-primary {
    background: var(--theme-gradient-primary);
    color: white;
    box-shadow: var(--theme-shadow-glow);
}

.plan__cta.is-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.35);
}

.plan__cta.detail__secondary {
    background: var(--theme-bg-secondary);
    color: var(--theme-text-primary);
    border: 1px solid var(--theme-border-medium);
}

.plan__cta.detail__secondary:hover {
    background: var(--theme-text-primary);
    color: var(--theme-bg-primary);
}

.plan-comparison__section {
    padding: 80px 0;
    background: var(--theme-bg-secondary);
}

.section-intro__header {
    text-align: center;
    margin-bottom: 48px;
}

.section-intro__label {
    font-family: var(--theme-font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--theme-accent-primary);
    margin-bottom: 12px;
    font-weight: 500;
}

.section-intro__title {
    font-family: var(--theme-font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
}

.plan-comparison__table-wrapper {
    background: var(--theme-bg-card);
    border: 1px solid var(--theme-border-subtle);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--theme-shadow-md);
}

.plan-comparison__table {
    width: 100%;
    border-collapse: collapse;
}

.plan-comparison__table thead {
    background: var(--theme-bg-secondary);
}

.plan-comparison__table th {
    padding: 18px 24px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid var(--theme-border-subtle);
    font-size: 0.9rem;
}

.plan-comparison__table th:not(:first-child) {
    text-align: center;
}

.plan-comparison__table th.is-highlighted {
    background: rgba(124, 58, 237, 0.08);
    color: var(--theme-accent-primary);
}

.plan-comparison__table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--theme-border-subtle);
    font-size: 0.9rem;
}

.plan-comparison__table td:not(:first-child) {
    text-align: center;
}

.plan-comparison__table td.is-highlighted {
    background: rgba(124, 58, 237, 0.04);
}

.plan-comparison__table tbody tr:last-child td {
    border-bottom: none;
}

.plan-comparison__table tbody tr:hover {
    background: rgba(124, 58, 237, 0.02);
}

.icon-confirm {
    color: var(--theme-accent-green);
}

.icon-unavailable {
    color: var(--theme-text-muted);
    opacity: 0.4;
}

.answer-list__section {
    padding: 80px 0;
}

.answer-list__grid {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.answer-list__item {
    background: var(--theme-bg-card);
    border: 1px solid var(--theme-border-subtle);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.answer-list__item:hover {
    border-color: rgba(124, 58, 237, 0.2);
}

.answer-list__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
}

.answer-list__question h4 {
    font-size: 1rem;
    font-weight: 600;
}

.answer-list__icon {
    width: 26px;
    height: 26px;
    background: var(--theme-bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--theme-text-muted);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.answer-list__item.is-active .answer-list__icon {
    background: var(--theme-gradient-primary);
    color: white;
    transform: rotate(45deg);
}

.answer-list__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--theme-ease-out-expo);
}

.answer-list__item.is-active .answer-list__answer {
    max-height: 200px;
}

.answer-list__answer p {
    padding: 0 24px 20px;
    color: var(--theme-text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.confidence__section {
    padding: 60px 0;
    border-top: 1px solid var(--theme-border-subtle);
}

.confidence__grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.confidence__item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--theme-text-muted);
}

.confidence__item svg {
    width: 24px;
    height: 24px;
    color: var(--theme-accent-green);
}

.confidence__item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.assurance__banner {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(167, 139, 250, 0.04) 100%);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 800px;
    margin: 40px auto 0;
}

.assurance__icon {
    width: 64px;
    height: 64px;
    background: var(--theme-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--theme-shadow-glow);
}

.assurance__icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.assurance__content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.assurance__content p {
    color: var(--theme-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

    .plan__card.is-featured {
        transform: none;
    }

    .plan__card.is-featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .plan-comparison__table {
        font-size: 0.8rem;
    }

    .plan-comparison__table th,
    .plan-comparison__table td {
        padding: 12px 16px;
    }

    .confidence__grid {
        gap: 32px;
    }

    .assurance__banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
}

.pricing-welcome {
    display: flex;
    align-items: center;
    gap: 16px;
    width: min(480px, calc(100% - 32px));
    margin: 0;
    padding: 20px 24px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 16px;
    background: #ecfdf5;
    color: #14532d;
    font-size: 0.9rem;
    line-height: 1.6;
    position: fixed;
    top: 96px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
    pointer-events: none;
    box-shadow: var(--theme-shadow-lg);
    animation: pricing-welcome-arrive 350ms var(--theme-ease-out-expo) backwards;
    transition: opacity 350ms ease, translate 350ms ease;
}

.pricing-welcome.is-leaving { opacity: 0; translate: 0 -10px; }

@keyframes pricing-welcome-arrive {
    from { opacity: 0; transform: translate(-50%, -12px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.pricing-welcome__symbol {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #059669;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.pricing-welcome__title {
    display: block;
    margin-bottom: 3px;
    font-size: 1rem;
}

.pricing-celebration {
    position: fixed;
    inset: 0;
    z-index: 10000;
    overflow: hidden;
    pointer-events: none;
}

.pricing-celebration__particle {
    position: absolute;
    left: var(--celebration-left);
    top: -20px;
    width: 8px;
    height: 12px;
    border-radius: 2px;
    background: var(--celebration-color);
    animation: pricing-celebration-fall var(--celebration-duration) var(--celebration-delay) ease-in both;
    will-change: transform, opacity;
}

.pricing-celebration__particle:nth-child(3n) {
    height: 8px;
    border-radius: 50%;
}

@keyframes pricing-celebration-fall {
    0% { transform: translate3d(0, 0, 0) rotate(0); opacity: 0; }
    10% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translate3d(var(--celebration-drift), calc(100vh + 30px), 0) rotate(var(--celebration-spin)); opacity: 0; }
}

@media (max-width: 480px) {
    .pricing-welcome {
        align-items: flex-start;
        gap: 12px;
        padding: 18px;
        top: 80px;
    }

    .pricing-welcome__symbol {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pricing-welcome { animation: none; transition: none; }
    .pricing-celebration { display: none; }
    .pricing-celebration__particle { animation: none; }
}

.access-window {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 14px 20px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    background: #f3edff;
    color: #5b21b6;
    font-family: var(--theme-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
}

.access-window svg { flex-shrink: 0; }
.access-window__time { font-variant-numeric: tabular-nums; font-size: 1.125rem; font-weight: 700; color: var(--theme-text-primary); }
.funnel-reservation { margin: 0 0 28px; }
.pricing-reservation { padding: 8px 20px 0; }
.funnel-reservation[hidden], .pricing-reservation[hidden], [data-access-time][hidden] { display: none; }

@media (max-width: 480px) {
    .access-window { gap: 8px; padding: 12px 14px; font-size: 0.8rem; }
}

