: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-gradient-hero: linear-gradient(180deg, #FDFBF7 0%, #F7F4ED 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);
    --theme-ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--theme-font-body);
    background: var(--theme-bg-primary);
    color: var(--theme-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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: 1300px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}

.availability-strip {
    background: var(--theme-bg-dark);
    color: white;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.availability-strip .status-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: motion-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.availability-strip span {
    color: var(--theme-accent-warm);
    font-weight: 700;
}

.availability-strip a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 4px;
    font-weight: 600;
}

.activity-notice {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 998;
    background: var(--theme-bg-card);
    border: 1px solid var(--theme-border-subtle);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 340px;
    opacity: 0;
    transform: translateY(20px) translateX(-20px);
    transition: all 0.5s var(--theme-ease-out-expo);
    pointer-events: none;
}

.activity-notice.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
    pointer-events: all;
}

.activity-notice__avatar {
    width: 40px;
    height: 40px;
    background: var(--theme-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.activity-notice__text {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--theme-text-secondary);
}

.activity-notice__text strong {
    color: var(--theme-text-primary);
    display: block;
}

.activity-notice__time {
    font-size: 0.75rem;
    color: var(--theme-text-muted);
    margin-top: 2px;
}

@media (max-width: 768px) {
    .activity-notice {
        left: 16px;
        right: 16px;
        bottom: 80px;
        max-width: none;
    }
}

.persistent-action {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--theme-ease-out-expo);
    pointer-events: none;
}

.persistent-action.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.persistent-action__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--theme-gradient-primary);
    color: white;
    padding: 16px 28px;
    border-radius: 100px;
    font-family: var(--theme-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
    transition: all 0.3s var(--theme-ease-out-expo);
    position: relative;
    overflow: hidden;
}

.persistent-action__btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: motion-shimmer 3s ease-in-out infinite;
}

@keyframes motion-shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.persistent-action__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.5);
}

.persistent-action__btn svg {
    transition: transform 0.3s var(--theme-ease-out-expo);
}

.persistent-action__btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .persistent-action {
        bottom: 20px;
        right: 0;
        left: 0;
        display: flex;
        justify-content: center;
    }

    .persistent-action__btn {
        padding: 14px 28px;
        font-size: 0.9rem;
        box-shadow: 0 8px 32px rgba(124, 58, 237, 0.5);
    }
}

.masthead {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--theme-ease-out-expo);
}

.masthead.has-availability {
    top: var(--availability-height, 40px);
}

.masthead.is-scrolled {
    top: 0;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--theme-border-subtle);
    box-shadow: var(--theme-shadow-sm);
}

.masthead__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: 44px;
    height: 44px;
    background: var(--theme-gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--theme-shadow-glow);
}

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

.wordmark__text {
    font-family: var(--theme-font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

.navigation__links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navigation__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--theme-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.navigation__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--theme-accent-primary);
    transition: width 0.3s var(--theme-ease-out-expo);
}

.navigation__link:hover {
    color: var(--theme-text-primary);
}

.navigation__link:hover::after {
    width: 100%;
}

.navigation__cta {
    background: var(--theme-text-primary);
    color: var(--theme-bg-primary);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--theme-ease-out-expo);
    border: 2px solid transparent;
    position: relative;
}

.navigation__cta .navigation__cta-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--theme-accent-rose);
    color: white;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 700;
    animation: motion-pulse 2s ease-in-out infinite;
}

.navigation__cta:hover {
    background: transparent;
    color: var(--theme-text-primary);
    border-color: var(--theme-text-primary);
}

.opening {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 200px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--theme-gradient-hero);
}

.opening::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__decoration {
    position: absolute;
    opacity: 0.08;
    font-size: 120px;
    pointer-events: none;
}

.opening__decoration.is-left {
    left: 5%;
    top: 30%;
    transform: rotate(-15deg);
    animation: motion-float 8s ease-in-out infinite;
}

.opening__decoration.is-right {
    right: 5%;
    top: 40%;
    transform: rotate(15deg);
    animation: motion-float 8s ease-in-out infinite reverse;
}

@keyframes motion-float {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    50% { transform: translateY(-20px) rotate(-15deg); }
}

.opening__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 8px;
    background: rgba(225, 29, 72, 0.08);
    border: 1px solid rgba(225, 29, 72, 0.2);
    border-radius: 100px;
    margin-bottom: 40px;
    animation: motion-fade-in-up 0.8s var(--theme-ease-out-expo) 0.2s both;
}

.opening__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--theme-accent-rose);
    border-radius: 50%;
    animation: motion-pulse 2s ease-in-out infinite;
}

@keyframes motion-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.opening__badge-text {
    font-family: var(--theme-font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--theme-accent-rose);
    font-weight: 500;
}

.opening__title {
    font-family: var(--theme-font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    max-width: 900px;
    animation: motion-fade-in-up 0.8s var(--theme-ease-out-expo) 0.4s both;
}

.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.25rem;
    color: var(--theme-text-secondary);
    max-width: 620px;
    margin: 0 auto 20px;
    line-height: 1.7;
    animation: motion-fade-in-up 0.8s var(--theme-ease-out-expo) 0.6s both;
}

.opening__proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    animation: motion-fade-in-up 0.8s var(--theme-ease-out-expo) 0.7s both;
}

.opening__proof-avatars {
    display: flex;
}

.opening__proof-avatars .portrait {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--theme-bg-primary);
    margin-left: -8px;
    background: var(--theme-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
}

.opening__proof-avatars .portrait:first-child {
    margin-left: 0;
}

.opening__proof-text {
    font-size: 0.9rem;
    color: var(--theme-text-muted);
}

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

.opening__proof-stars {
    color: var(--theme-accent-warm);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.opening__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: motion-fade-in-up 0.8s var(--theme-ease-out-expo) 0.8s both;
}

.action__primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--theme-gradient-primary);
    color: white;
    padding: 18px 32px;
    border-radius: 100px;
    font-family: var(--theme-font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--theme-ease-out-expo);
    box-shadow: var(--theme-shadow-glow);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.action__primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: motion-shimmer 3s ease-in-out infinite;
}

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

.action__primary svg {
    transition: transform 0.3s var(--theme-ease-out-expo);
}

.action__primary:hover svg {
    transform: translateX(4px);
}

.action__secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--theme-bg-card);
    color: var(--theme-text-primary);
    padding: 18px 32px;
    border-radius: 100px;
    font-family: var(--theme-font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--theme-border-medium);
    transition: all 0.3s var(--theme-ease-out-expo);
    box-shadow: var(--theme-shadow-sm);
}

.action__secondary:hover {
    background: var(--theme-bg-secondary);
    border-color: var(--theme-border-medium);
    transform: translateY(-2px);
}

.opening__note {
    display: block;
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--theme-text-muted);
    animation: motion-fade-in-up 0.8s var(--theme-ease-out-expo) 0.9s both;
}

.opening__note svg {
    display: inline-block;
    vertical-align: -2px;
    margin-right: 4px;
}

.opening__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--theme-border-subtle);
    animation: motion-fade-in-up 0.8s var(--theme-ease-out-expo) 1s both;
}

.opening__stat {
    text-align: center;
}

.opening__stat-value {
    font-family: var(--theme-font-display);
    font-size: 2.5rem;
    font-weight: 600;
    background: var(--theme-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.opening__stat-label {
    font-size: 0.9rem;
    color: var(--theme-text-muted);
    margin-top: 4px;
}

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

.outcome-strip {
    padding: 60px 0;
    background: var(--theme-bg-dark);
    color: white;
    text-align: center;
}

.outcome-strip__label {
    font-family: var(--theme-font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--theme-accent-warm);
    margin-bottom: 20px;
}

.outcome-strip__text {
    font-family: var(--theme-font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
    font-style: italic;
}

.outcome-strip__text span {
    color: var(--theme-accent-warm);
    font-weight: 600;
    font-style: normal;
}

.outcome-strip__source {
    margin-top: 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.writing-preview {
    padding: 100px 0;
    background: var(--theme-bg-secondary);
    position: relative;
}

.writing-preview__container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--theme-bg-card);
    border-radius: 24px;
    border: 1px solid var(--theme-border-subtle);
    box-shadow: var(--theme-shadow-lg);
    overflow: hidden;
}

.writing-preview__header {
    background: var(--theme-bg-dark);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.writing-preview__dots {
    display: flex;
    gap: 8px;
}

.writing-preview__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.writing-preview__dot:nth-child(1) { background: #ff5f57; }

.writing-preview__dot:nth-child(2) { background: #ffbd2e; }

.writing-preview__dot:nth-child(3) { background: #28ca41; }

.writing-preview__title {
    color: rgba(255,255,255,0.6);
    font-family: var(--theme-font-mono);
    font-size: 0.8rem;
    margin-left: 12px;
}

.writing-preview__content {
    padding: 40px;
    min-height: 400px;
}

.writing-preview__input {
    margin-bottom: 32px;
}

.writing-preview__input label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--theme-text-primary);
}

.writing-preview__input-field {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--theme-border-medium);
    border-radius: 12px;
    font-family: var(--theme-font-body);
    font-size: 1rem;
    background: var(--theme-bg-secondary);
    color: var(--theme-text-primary);
    transition: all 0.3s ease;
}

.writing-preview__input-field:focus {
    outline: none;
    border-color: var(--theme-accent-primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.writing-preview__output {
    background: var(--theme-bg-secondary);
    border-radius: 12px;
    padding: 24px;
    font-family: var(--theme-font-display);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--theme-text-secondary);
    min-height: 200px;
    position: relative;
}

.writing-preview__output::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 16px;
    font-size: 4rem;
    color: var(--theme-accent-primary);
    opacity: 0.2;
    font-family: var(--theme-font-display);
    line-height: 1;
}

.writing-caret {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: var(--theme-accent-primary);
    margin-left: 2px;
    animation: motion-blink 1s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes motion-blink {
    50% { opacity: 0; }
}

.writing-preview__cta {
    text-align: center;
    margin-top: 40px;
}

.writing-preview__cta p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--theme-text-primary);
    margin-bottom: 16px;
}

.writing-preview__cta .action__primary {
    font-size: 1.05rem;
    padding: 20px 40px;
}

.community {
    padding: 80px 0;
    border-bottom: 1px solid var(--theme-border-subtle);
}

.community__title {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--theme-text-muted);
    margin-bottom: 40px;
}

.community__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.community__item {
    font-family: var(--theme-font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--theme-text-muted);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.community__item:hover {
    opacity: 0.8;
}

.metrics {
    padding: 120px 0;
    background: var(--theme-bg-secondary);
}

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

.metric__card {
    background: var(--theme-bg-card);
    border: 1px solid var(--theme-border-subtle);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s var(--theme-ease-out-expo);
}

.metric__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--theme-shadow-md);
}

.metric__value {
    font-family: var(--theme-font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    background: var(--theme-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.metric__label {
    font-size: 1rem;
    color: var(--theme-text-secondary);
}

.engine-section {
    padding: 160px 0;
    position: relative;
}

.engine-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.engine__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.engine__text h2 {
    font-family: var(--theme-font-display);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
}

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

.engine__text > p {
    font-size: 1.1rem;
    color: var(--theme-text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.engine__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.engine__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.engine__feature-icon {
    width: 44px;
    height: 44px;
    background: var(--theme-gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--theme-shadow-glow);
}

.engine__feature-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.engine__feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

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

.engine__visual {
    position: relative;
}

.engine__card {
    background: var(--theme-bg-card);
    border: 1px solid var(--theme-border-subtle);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--theme-shadow-lg);
}

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

.quality-model__comparison {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quality-model__comparison-title {
    font-family: var(--theme-font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--theme-text-muted);
    margin-bottom: 8px;
}

.quality-model__item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.quality-model__name {
    width: 110px;
    font-size: 0.85rem;
    color: var(--theme-text-secondary);
    font-weight: 500;
}

.quality-model__bar-container {
    flex: 1;
    height: 10px;
    background: var(--theme-bg-secondary);
    border-radius: 5px;
    overflow: hidden;
}

.quality-model__bar {
    height: 100%;
    border-radius: 5px;
    transition: width 1.5s var(--theme-ease-out-expo);
}

.quality-model__bar.quality-model--autonovel {
    background: var(--theme-gradient-primary);
    width: 96%;
}

.quality-model__bar.quality-model--squibler {
    background: var(--theme-text-muted);
    opacity: 0.4;
    width: 68%;
}

.quality-model__bar.quality-model--novelai {
    background: var(--theme-text-muted);
    opacity: 0.4;
    width: 62%;
}

.quality-model__bar.quality-model--sudowrite {
    background: var(--theme-text-muted);
    opacity: 0.4;
    width: 71%;
}

.quality-model__score {
    width: 45px;
    text-align: right;
    font-family: var(--theme-font-mono);
    font-size: 0.8rem;
    font-weight: 500;
}

.quality-model__score.is-highlighted {
    color: var(--theme-accent-primary);
    font-weight: 700;
}

.quality__note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--theme-border-subtle);
    font-size: 0.8rem;
    color: var(--theme-text-muted);
    text-align: center;
}

.section-intro__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.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: 16px;
    font-weight: 500;
}

.section-intro__title {
    font-family: var(--theme-font-display);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-intro__subtitle {
    font-size: 1.1rem;
    color: var(--theme-text-secondary);
    line-height: 1.7;
}

.capabilities {
    padding: 160px 0;
    background: var(--theme-bg-secondary);
}

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

.capability__card {
    background: var(--theme-bg-card);
    border: 1px solid var(--theme-border-subtle);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--theme-ease-out-expo);
}

.capability__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--theme-gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.capability__card:hover::before {
    opacity: 1;
}

.capability__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(167, 139, 250, 0.08) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--theme-accent-primary);
}

.capability__title {
    font-family: var(--theme-font-body);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.capability__description {
    color: var(--theme-text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.inline-invitation {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--theme-bg-secondary) 0%, var(--theme-bg-primary) 100%);
}

.inline-invitation__inner {
    max-width: 700px;
    margin: 0 auto;
}

.inline-invitation__inner h3 {
    font-family: var(--theme-font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 12px;
}

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

.inline-invitation__inner p {
    font-size: 1.05rem;
    color: var(--theme-text-secondary);
    margin-bottom: 28px;
}

.inline-invitation__inner .assurance__line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--theme-accent-green);
    font-weight: 500;
}

.inline-invitation__inner .assurance__line svg {
    flex-shrink: 0;
}

.workflow-section {
    padding: 160px 0;
}

.workflow__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 80px;
}

.workflow-step__card {
    text-align: center;
    position: relative;
}

.workflow-step__number {
    font-family: var(--theme-font-display);
    font-size: 5rem;
    font-weight: 600;
    background: var(--theme-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -24px;
    position: relative;
    z-index: 0;
}

.workflow-step__content {
    position: relative;
    z-index: 1;
}

.workflow-step__icon {
    width: 72px;
    height: 72px;
    background: var(--theme-bg-card);
    border: 1px solid var(--theme-border-subtle);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--theme-accent-primary);
    box-shadow: var(--theme-shadow-sm);
}

.workflow-step__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.workflow-step__description {
    color: var(--theme-text-secondary);
    line-height: 1.7;
}

.workflow-step__connector {
    position: absolute;
    top: 100px;
    right: -24px;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--theme-accent-primary), transparent);
}

.workflow-step__card:last-child .workflow-step__connector {
    display: none;
}

.categories {
    padding: 160px 0;
    background: var(--theme-bg-secondary);
}

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

.category-card__card {
    background: var(--theme-bg-card);
    border: 1px solid var(--theme-border-subtle);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s var(--theme-ease-out-expo);
}

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

.category-card__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.category-card__name {
    font-weight: 600;
    margin-bottom: 4px;
}

.category-card__count {
    font-size: 0.85rem;
    color: var(--theme-text-muted);
}

.memoirs {
    padding: 140px 0;
    border-bottom: 1px solid var(--theme-border-subtle);
    scroll-margin-top: 160px;
}

.memoirs__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(40px, 6vw, 88px);
}

.memoirs__details {
    list-style: none;
    display: grid;
    gap: 24px;
    margin: 32px 0;
}

.memoirs__details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.memoirs__number {
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    height: 36px;
    border-radius: 10px;
    background: rgba(124, 58, 237, 0.08);
    color: var(--theme-accent-primary);
    font-family: var(--theme-font-mono);
    font-size: 0.75rem;
}

.memoirs__details h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.memoirs__details p {
    color: var(--theme-text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.memoirs__keepsake {
    display: grid;
    justify-items: center;
    gap: 36px;
    padding: 56px 28px 36px;
    border: 1px solid var(--theme-border-subtle);
    border-radius: 28px;
    background: radial-gradient(ellipse at 50% 35%, rgba(167, 139, 250, 0.16), transparent 70%), var(--theme-bg-secondary);
}

.memoirs__book {
    width: min(100%, 300px);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px 36px 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 10px solid #302246;
    border-radius: 4px 14px 14px 4px;
    color: #f7e8ca;
    background: linear-gradient(120deg, #39264f, #58406f);
    box-shadow: 6px 5px 0 #e8dfcd, 9px 8px 0 #d7ceb9, 16px 24px 36px rgba(26, 26, 46, 0.2);
    text-align: center;
    transform: rotate(-4deg);
}

.memoirs__book-label {
    font-family: var(--theme-font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.memoirs__book-mark {
    margin: 20px 0 12px;
}

.memoirs__book-title {
    font-family: var(--theme-font-display);
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -0.025em;
}

.memoirs__book-rule {
    width: 40px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
    margin: 24px 0 16px;
}

.memoirs__book-note {
    font-family: var(--theme-font-display);
    font-size: 1rem;
    line-height: 1.5;
}

.memoirs__keepsake figcaption {
    color: var(--theme-text-secondary);
    font-size: 0.8rem;
    text-align: center;
}

@media (max-width: 1024px) {
    .memoirs__grid {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 680px;
        margin: 0 auto;
    }

    .memoirs__keepsake {
        width: 100%;
        max-width: 480px;
        justify-self: center;
    }
}

@media (max-width: 480px) {
    .memoirs {
        padding: 80px 0;
    }

    .memoirs__keepsake {
        padding: 44px 32px 28px;
    }

    .memoirs__book {
        min-height: 360px;
        padding: 28px 16px 28px 22px;
    }

    .memoirs__book-title {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }
}

.reader-stories {
    padding: 160px 0;
}

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

.reader-story__card {
    background: var(--theme-bg-card);
    border: 1px solid var(--theme-border-subtle);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.4s var(--theme-ease-out-expo);
}

.reader-story__card:hover {
    box-shadow: var(--theme-shadow-md);
}

.reader-story__result {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--theme-accent-green);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.reader-story__rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.reader-story__rating svg {
    width: 18px;
    height: 18px;
    color: var(--theme-accent-warm);
    fill: var(--theme-accent-warm);
}

.reader-story__text {
    font-family: var(--theme-font-display);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--theme-text-primary);
}

.reader-story__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reader-story__avatar {
    width: 48px;
    height: 48px;
    background: var(--theme-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
}

.reader-story__info h4 {
    font-size: 1rem;
    font-weight: 600;
}

.reader-story__info p {
    font-size: 0.85rem;
    color: var(--theme-text-muted);
}

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

.plan-comparison__table-wrapper {
    background: var(--theme-bg-card);
    border: 1px solid var(--theme-border-subtle);
    border-radius: 20px;
    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: 20px 28px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid var(--theme-border-subtle);
    font-size: 0.95rem;
}

.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: 18px 28px;
    border-bottom: 1px solid var(--theme-border-subtle);
    font-size: 0.95rem;
}

.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;
}

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

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

.plan {
    padding: 160px 0;
}

.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: 24px;
    padding: 40px 36px;
    position: relative;
    transition: all 0.4s var(--theme-ease-out-expo);
}

.plan__card:hover {
    transform: translateY(-4px);
    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: 24px 24px 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;
}

.plan__popular.plan__best-value {
    background: var(--theme-gradient-warm);
    color: var(--theme-text-primary);
}

.plan__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan__desc {
    font-size: 0.9rem;
    color: var(--theme-text-muted);
    margin-bottom: 24px;
}

.plan__price {
    margin-bottom: 24px;
}

.plan__currency {
    font-size: 1.25rem;
    font-weight: 600;
    vertical-align: top;
}

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

.plan__period {
    font-size: 0.9rem;
    color: var(--theme-text-muted);
}

.plan__features {
    list-style: none;
    margin-bottom: 32px;
}

.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: 18px;
    height: 18px;
    color: var(--theme-accent-green);
    flex-shrink: 0;
}

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

.plan__cta.is-primary {
    background: var(--theme-gradient-primary);
    color: white;
    border: none;
    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__guarantee {
    text-align: center;
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--theme-text-muted);
}

.answer-list {
    padding: 160px 0;
    background: var(--theme-bg-secondary);
}

.answer-list__grid {
    max-width: 800px;
    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: 16px;
    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: 24px 28px;
    cursor: pointer;
}

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

.answer-list__icon {
    width: 28px;
    height: 28px;
    background: var(--theme-bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    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: 300px;
}

.answer-list__answer p {
    padding: 0 28px 24px;
    color: var(--theme-text-secondary);
    line-height: 1.7;
}

.closing-invitation {
    padding: 160px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-invitation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.closing-invitation__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.closing-invitation__title {
    font-family: var(--theme-font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
}

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

.closing-invitation__subtitle {
    font-size: 1.15rem;
    color: var(--theme-text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.closing-invitation__note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--theme-text-muted);
}

.closing-invitation__urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(225, 29, 72, 0.08);
    border: 1px solid rgba(225, 29, 72, 0.15);
    border-radius: 100px;
    padding: 8px 20px;
    margin-bottom: 28px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--theme-accent-rose);
}

.closing-invitation__urgency .status-pulse {
    width: 8px;
    height: 8px;
    background: var(--theme-accent-rose);
    border-radius: 50%;
    animation: motion-pulse 2s ease-in-out infinite;
}

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

.assurance__card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--theme-bg-card);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 24px;
    padding: 48px 40px;
}

.assurance__card .assurance__icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.assurance__card h3 {
    font-family: var(--theme-font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.assurance__card p {
    font-size: 1rem;
    color: var(--theme-text-secondary);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

.site-footer {
    background: var(--theme-bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 40px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.site-footer__brand p {
    color: rgba(255, 255, 255, 0.5);
    margin: 16px 0 24px;
    max-width: 280px;
    line-height: 1.7;
}

.site-footer__column h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.site-footer__links {
    list-style: none;
}

.site-footer__links li {
    margin-bottom: 12px;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.site-footer__links a:hover {
    color: white;
}

.site-footer__bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer__bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.site-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.site-footer__logo .wordmark__icon {
    width: 36px;
    height: 36px;
}

.site-footer__logo .wordmark__text {
    font-size: 1.25rem;
}

@media (max-width: 1024px) {
    .engine__content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .capabilities__grid,
    .reader-stories__grid,
    .plan__grid {
        grid-template-columns: 1fr;
    }

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

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

    .site-footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navigation__links {
        display: none;
    }

    .availability-strip {
        display: block;
        font-size: 0.78rem;
        line-height: 1.6;
        padding: 8px 12px;
    }

    .availability-strip .status-pulse {
        display: inline-block;
        margin-right: 6px;
    }

    .availability-strip a {
        display: inline-block;
        white-space: nowrap;
    }

    .opening {
        padding: 180px 0 80px;
    }

    .opening__stats {
        flex-direction: column;
        gap: 24px;
    }

    .metrics__grid,
    .workflow__grid {
        grid-template-columns: 1fr;
    }

    .categories__grid {
        grid-template-columns: 1fr 1fr;
    }

    .workflow-step__connector {
        display: none;
    }

    .plan-comparison__table {
        font-size: 0.85rem;
    }

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

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.compact-navigation-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .compact-navigation-toggle {
        display: block;
    }
}

.action__primary--roomy {
    font-size:1.1rem; padding: 22px 40px;
}

