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

:root {
    --primary: #6C3AED;
    --primary-light: #8B5CF6;
    --primary-dark: #5B21B6;
    --primary-glow: rgba(108, 58, 237, 0.25);
    --accent: #06B6D4;
    --accent-light: #22D3EE;
    --bg: #09090B;
    --bg-card: #18181B;
    --bg-card-hover: #1F1F23;
    --bg-elevated: #27272A;
    --text: #FAFAFA;
    --text-secondary: #A1A1AA;
    --text-muted: #71717A;
    --border: #27272A;
    --border-light: #3F3F46;
    --success: #10B981;
    --danger: #EF4444;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.3), 0 2px 4px -2px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.4), 0 4px 6px -4px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 60px var(--primary-glow);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(0px);
}

.nav--scrolled {
    padding: 10px 0;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.nav__logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: white;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav__link:hover {
    color: var(--text);
}

.nav__cta {
    text-decoration: none;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s;
}

.nav__cta:hover {
    background: var(--primary-light);
    box-shadow: 0 0 20px var(--primary-glow);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__burger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

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

.btn--primary:hover {
    background: var(--primary-light);
    box-shadow: 0 0 30px var(--primary-glow);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-light);
}

.btn--outline:hover {
    border-color: var(--text-muted);
    background: rgba(255,255,255,0.03);
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__gradient {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.6;
    animation: pulse-slow 8s ease-in-out infinite;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(108, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, black, transparent);
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scale(1.05); }
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(108, 58, 237, 0.15);
    border: 1px solid rgba(108, 58, 237, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__title--accent {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.1875rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.hero__stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
}

.hero__stat-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

/* ===== Section Common ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(108, 58, 237, 0.1);
    border: 1px solid rgba(108, 58, 237, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Paradigm / Pipeline ===== */
.paradigm {
    padding: 100px 0;
}

.paradigm__pipeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.paradigm__stage {
    padding: 28px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0.65;
}

.paradigm__stage--highlight {
    opacity: 1;
    border-color: rgba(108, 58, 237, 0.4);
    box-shadow: var(--shadow-glow);
    background: rgba(108, 58, 237, 0.06);
}

.paradigm__stage-label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.paradigm__stage--highlight .paradigm__stage-label {
    color: var(--primary-light);
}

.paradigm__stage-players {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.5;
}

.paradigm__stage-players--empty {
    color: var(--primary-light);
}

.paradigm__stage-players--empty strong {
    color: var(--accent-light);
}

.paradigm__stage-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===== Problem ===== */
.problem {
    padding: 100px 0;
}

.problem__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.problem__card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem__card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.problem__number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(108, 58, 237, 0.08);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.problem__icon {
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem__card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.problem__card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Solution ===== */
.solution {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(108, 58, 237, 0.03), transparent);
}

.solution__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.solution__card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.solution__card:hover {
    border-color: rgba(108, 58, 237, 0.3);
    box-shadow: 0 0 40px rgba(108, 58, 237, 0.08);
    transform: translateY(-2px);
}

.solution__icon {
    width: 56px;
    height: 56px;
    background: rgba(108, 58, 237, 0.1);
    color: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.solution__card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.solution__card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* -- Solution Delivery Modes -- */
.solution__modes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.solution__mode {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid rgba(108, 58, 237, 0.25);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 40px rgba(108, 58, 237, 0.06);
    position: relative;
}

.solution__mode-icon {
    width: 56px;
    height: 56px;
    background: rgba(108, 58, 237, 0.1);
    color: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.solution__mode-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    color: var(--accent-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.solution__mode h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.solution__mode p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Steps ===== */
.steps {
    padding: 100px 0;
}

.steps__timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.steps__line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    opacity: 0.3;
}

.steps__item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 28px 0;
    position: relative;
}

.steps__dot {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-light);
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.steps__item:hover .steps__dot {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
}

.steps__content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.steps__content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Platform Example ===== */
.example {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(108, 58, 237, 0.03), transparent);
}

/* -- AI Feedback Card -- */
.example__feedback {
    max-width: 900px;
    margin: 0 auto 72px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.example__feedback-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    background: rgba(108, 58, 237, 0.06);
    border-bottom: 1px solid var(--border);
}

.example__feedback-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.example__feedback-header h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.example__feedback-badge {
    font-size: 0.75rem;
    color: var(--accent-light);
    font-weight: 500;
}

.example__feedback-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.example__feedback-section {
    /* section wrapper */
}

.example__feedback-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.example__feedback-label--strength {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.example__feedback-label--issue {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.example__feedback-label--option {
    background: rgba(251, 191, 36, 0.1);
    color: #FBBF24;
}

.example__feedback-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 4px;
}

.example__feedback-list li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}

.example__feedback-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    position: absolute;
    left: 0;
    top: 8px;
}

/* -- Positioning Options -- */
.example__feedback-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.example__option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    transition: border-color 0.3s;
}

.example__option--selected {
    border-color: var(--primary);
    background: rgba(108, 58, 237, 0.05);
}

.example__option-number {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--bg-elevated);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
}

.example__option--selected .example__option-number {
    background: var(--primary);
    color: white;
}

.example__option strong {
    font-size: 0.9375rem;
    display: block;
    margin-bottom: 2px;
}

.example__option p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.example__option-tag {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--primary);
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* -- Resume AS IS / TO BE -- */
.example__resume {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: start;
}

.example__resume-col {
    position: relative;
}

.example__resume-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.example__resume-tag--old {
    background: rgba(239, 68, 68, 0.12);
    color: var(--danger);
}

.example__resume-tag--new {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
}

.example__resume-paper {
    background: #111113;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
}

.example__resume-paper--new {
    border-color: rgba(108, 58, 237, 0.25);
    box-shadow: 0 0 40px rgba(108, 58, 237, 0.06);
}

.example__resume-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.example__resume-title-old {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.example__resume-title-new {
    font-size: 0.875rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 6px;
}

.example__resume-contact {
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.example__resume-heading {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 10px;
    margin-top: 18px;
}

.example__resume-heading:first-of-type {
    margin-top: 0;
}

.example__resume-text {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.example__resume-text--faded {
    color: var(--text-muted);
}

.example__resume-job {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    margin-top: 14px;
}

.example__resume-job:first-of-type {
    margin-top: 0;
}

.example__resume-job-title {
    font-size: 0.8125rem;
    font-weight: 600;
}

.example__resume-job-date {
    font-size: 0.6875rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.example__resume-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 0;
}

.example__resume-bullets li {
    font-size: 0.75rem;
    line-height: 1.55;
    padding-left: 14px;
    position: relative;
}

.example__resume-bullets li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
}

.example__resume-bullets--weak li {
    color: var(--text-muted);
}

.example__resume-bullets--weak li::before {
    background: var(--text-muted);
    opacity: 0.4;
}

.example__resume-bullets--strong li {
    color: var(--text-secondary);
}

.example__resume-bullets--strong li::before {
    background: var(--success);
}

.example__resume-bullets--strong li strong {
    color: var(--text);
}

.example__resume-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.example__resume-skill {
    font-size: 0.6875rem;
    font-weight: 500;
    padding: 4px 10px;
    background: rgba(108, 58, 237, 0.08);
    color: var(--primary-light);
    border-radius: var(--radius-full);
    border: 1px solid rgba(108, 58, 237, 0.15);
}

/* -- Arrow between resumes -- */
.example__resume-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 180px;
    color: var(--primary-light);
}

.example__resume-arrow span {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* ===== Advantage ===== */
.advantage {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(108, 58, 237, 0.03), transparent);
}

/* -- They Do / We Do Comparison -- */
.advantage__comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 64px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

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

.advantage__col-header {
    padding: 18px 24px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.advantage__col--they .advantage__col-header {
    background: rgba(161, 161, 170, 0.08);
    color: var(--text-muted);
}

.advantage__col--we .advantage__col-header {
    background: rgba(108, 58, 237, 0.1);
    color: var(--primary-light);
}

.advantage__col-item {
    padding: 16px 24px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    line-height: 1.5;
}

.advantage__col--we .advantage__col-item {
    color: var(--text);
}

.advantage__col--we .advantage__col-item strong {
    color: var(--accent-light);
}

/* -- Three-Layer Moat -- */
.advantage__moat {
    text-align: center;
}

.advantage__moat-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
}

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

.advantage__moat-card {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: left;
    transition: all 0.3s ease;
}

.advantage__moat-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.advantage__moat-icon {
    width: 52px;
    height: 52px;
    background: rgba(108, 58, 237, 0.1);
    color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.advantage__moat-card h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.advantage__moat-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== GCC ===== */
.gcc {
    padding: 100px 0;
}

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

.gcc__text .section-label {
    margin-bottom: 16px;
}

.gcc__text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.gcc__text > p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.gcc__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gcc__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.gcc__list li svg {
    color: var(--success);
    flex-shrink: 0;
}

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

/* ===== Rosetta Stone Animation ===== */
.rosetta {
    width: 100%;
    max-width: 480px;
}

.rosetta__stone {
    background: linear-gradient(180deg, #1a1a20 0%, #131316 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 24px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.04);
}

.rosetta__header {
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.rosetta__band {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    opacity: 0;
    transform: translateX(-12px);
    animation: rosetta-fade-in 0.6s ease forwards;
}

.rosetta__band--1 { animation-delay: 0.3s; }
.rosetta__band--2 { animation-delay: 0.7s; }
.rosetta__band--3 { animation-delay: 1.1s; }
.rosetta__band--4 { animation-delay: 1.5s; }

@keyframes rosetta-fade-in {
    to { opacity: 1; transform: translateX(0); }
}

.rosetta__region {
    min-width: 80px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.rosetta__flag {
    font-size: 1rem;
}

.rosetta__titles {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    flex-wrap: wrap;
}

.rosetta__title {
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.rosetta__title--raw {
    background: rgba(239, 68, 68, 0.08);
    color: rgba(239, 68, 68, 0.7);
    border: 1px solid rgba(239, 68, 68, 0.15);
    font-style: italic;
}

.rosetta__title--norm {
    background: rgba(16, 185, 129, 0.08);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-weight: 600;
    opacity: 0;
    animation: rosetta-decode 0.5s ease forwards;
}

.rosetta__band--1 .rosetta__title--norm { animation-delay: 1.0s; }
.rosetta__band--2 .rosetta__title--norm { animation-delay: 1.4s; }
.rosetta__band--3 .rosetta__title--norm { animation-delay: 1.8s; }
.rosetta__band--4 .rosetta__title--norm { animation-delay: 2.2s; }

@keyframes rosetta-decode {
    0% { opacity: 0; filter: blur(4px); transform: translateX(6px); }
    100% { opacity: 1; filter: blur(0); transform: translateX(0); }
}

.rosetta__arrow-inline {
    color: var(--primary-light);
    font-size: 0.8125rem;
    font-weight: 700;
    flex-shrink: 0;
    opacity: 0;
    animation: rosetta-arrow 0.3s ease forwards;
}

.rosetta__band--1 .rosetta__arrow-inline { animation-delay: 0.8s; }
.rosetta__band--2 .rosetta__arrow-inline { animation-delay: 1.2s; }
.rosetta__band--3 .rosetta__arrow-inline { animation-delay: 1.6s; }
.rosetta__band--4 .rosetta__arrow-inline { animation-delay: 2.0s; }

@keyframes rosetta-arrow {
    to { opacity: 1; }
}

.rosetta__divider {
    height: 1px;
    background: var(--border);
    opacity: 0.5;
}

.rosetta__glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 58, 237, 0.06), transparent);
    animation: rosetta-scan 4s ease-in-out infinite;
    animation-delay: 2.5s;
    pointer-events: none;
}

@keyframes rosetta-scan {
    0% { left: -60%; }
    100% { left: 160%; }
}

.rosetta__label {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 16px;
    opacity: 0;
    animation: rosetta-fade-in 0.6s ease forwards;
    animation-delay: 2.6s;
}

/* ===== Team ===== */
.team {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(108, 58, 237, 0.03), transparent);
}

.team__row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.team__card {
    flex: 1;
    min-width: 0;
    max-width: 220px;
    padding: 28px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.team__card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.team__photo {
    width: 88px;
    height: 88px;
    margin: 0 auto 18px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-light);
    display: block;
}

.team__card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team__role {
    display: block;
    font-size: 0.75rem;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 12px;
}

.team__card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 100px 0;
}

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

.testimonials__card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonials__card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.testimonials__stars {
    display: flex;
    gap: 2px;
    color: #FBBF24;
    margin-bottom: 20px;
}

.testimonials__quote {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
    flex: 1;
}

.testimonials__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonials__author-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8125rem;
    color: white;
}

.testimonials__author-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.testimonials__author-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== Strategy ===== */
.strategy {
    padding: 100px 0;
}

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

.strategy__content .section-title {
    margin-bottom: 16px;
}

.strategy__desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.strategy__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.strategy__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: border-color 0.3s;
}

.strategy__item:hover {
    border-color: var(--border-light);
}

.strategy__check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Beta ===== */
.beta {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(108, 58, 237, 0.06), rgba(108, 58, 237, 0.03));
}

.beta__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.beta__desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.beta__form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto 16px;
}

.beta__input {
    flex: 1;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.3s;
}

.beta__input::placeholder {
    color: var(--text-muted);
}

.beta__input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.beta__btn {
    white-space: nowrap;
}

.beta__note {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer__tagline {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--text);
}

.footer__copy {
    font-size: 0.8125rem;
    color: var(--text-muted);
    width: 100%;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

/* ===== Animations ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(9, 9, 11, 0.95);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .nav__links.is-open {
        display: flex;
    }

    .nav__cta {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

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

    .paradigm__pipeline {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

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

    .example__resume {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .example__resume-arrow {
        flex-direction: row;
        padding-top: 0;
        justify-content: center;
    }

    .example__resume-arrow svg {
        transform: rotate(90deg);
    }

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

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

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

    .gcc__text .section-title {
        text-align: center;
    }

    .gcc__text > p {
        text-align: center;
    }

    .gcc__list {
        align-items: center;
    }

    .rosetta__band {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .rosetta__titles {
        gap: 4px;
    }

    .rosetta__title {
        font-size: 0.6875rem;
    }

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

    .team__row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .team__card {
        max-width: 260px;
        flex: 0 1 calc(50% - 10px);
    }

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

    .beta__form {
        flex-direction: column;
    }

    .footer__content {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .paradigm__pipeline {
        grid-template-columns: 1fr;
    }

    .team__card {
        flex: 0 1 100%;
    }
}
