/* ============================================
   GRVT — New Landing (Asian-first positioning)
   Layered on top of styles.css
   ============================================ */

/* --- HERO overrides --- */
.hero-title-new {
    font-size: clamp(40px, 7vw, 84px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 24px 0 20px;
}

.lang-cycle {
    display: inline-block;
    position: relative;
    min-width: 260px;
    height: 1.1em;
    vertical-align: baseline;
}

.lang-cycle .lang-word {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: langCycle 8s infinite;
    background: linear-gradient(135deg, #f5f5f7 0%, #86868b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.lang-cycle .lang-word:nth-child(1) { animation-delay: 0s; }
.lang-cycle .lang-word:nth-child(2) { animation-delay: 2s; }
.lang-cycle .lang-word:nth-child(3) { animation-delay: 4s; }
.lang-cycle .lang-word:nth-child(4) { animation-delay: 6s; }

@keyframes langCycle {
    0%, 20%   { opacity: 1; transform: translateY(0); }
    25%, 95%  { opacity: 0; transform: translateY(-10px); }
    100%      { opacity: 0; }
}

.hero-desc-new {
    font-size: 19px;
    line-height: 1.55;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 36px;
}

.hero-desc-new b {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-actions-new {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-footnote {
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-top: 16px;
}

.hero-footnote a {
    color: var(--accent-blue);
    text-decoration: none;
}

/* --- WHY section --- */
.section-why {
    padding: 120px 24px 80px;
    background: var(--bg-void);
}

.why-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-title-left {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: start;
}

@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .section-title-left { font-size: 32px; }
}

.why-text p {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.why-text .why-lead {
    font-size: 21px;
    color: var(--text-primary);
    font-weight: 500;
}

.why-text b {
    color: var(--text-primary);
    font-weight: 600;
}

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

.why-stat {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
}

.why-stat-num {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.why-stat-label {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
}

.why-stat-label .muted {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 11px;
}

/* --- Feature mega visuals --- */
.lang-showcase {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
}

.lang-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-chip .flag {
    font-size: 20px;
}

.apple-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
}

.apple-device {
    background: rgba(41, 151, 255, 0.08);
    border: 1px solid rgba(41, 151, 255, 0.3);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.coach-card {
    background: rgba(191, 90, 242, 0.06);
    border: 1px solid rgba(191, 90, 242, 0.3);
    border-radius: 16px;
    padding: 20px;
    min-width: 220px;
}

.coach-card-title {
    font-size: 13px;
    color: var(--accent-purple);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.coach-client {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
    color: var(--text-primary);
}

.coach-client:last-child {
    border-bottom: none;
    color: var(--text-secondary);
    font-size: 12px;
}

/* --- PRICING --- */
.section-pricing {
    padding: 100px 24px;
    background: var(--bg-void);
}

.pricing-grid {
    max-width: var(--container-max);
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    text-align: left;
}

.pricing-card-featured {
    border-color: var(--accent-blue);
    background: linear-gradient(180deg, rgba(41, 151, 255, 0.08) 0%, var(--bg-card) 100%);
    position: relative;
    transform: scale(1.02);
}

.pricing-card-featured::before {
    content: "RECOMMENDED";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 8px;
}

.pricing-tier {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-period {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 4px 0 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓ ";
    color: var(--accent-green);
    font-weight: 700;
    margin-right: 8px;
}

.pricing-note {
    text-align: center;
    margin-top: 32px;
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-note a {
    color: var(--accent-blue);
    text-decoration: none;
}

/* --- Pricing visual (feature #2) --- */
.pricing-visual {
    background: rgba(48, 209, 88, 0.04);
    border: 1px solid rgba(48, 209, 88, 0.2);
    border-radius: 16px;
    padding: 24px;
    min-width: 280px;
}

.pricing-visual-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-visual-row:last-child {
    border-bottom: none;
}

.pricing-visual-divider {
    border: none;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    margin: 8px 0;
    padding: 0;
}

.pricing-visual-highlight {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 16px;
    padding-top: 14px;
}

.pricing-visual-highlight span:last-child {
    color: var(--accent-green);
}

/* --- Indie founder card (feature #3) --- */
.indie-card {
    background: rgba(191, 90, 242, 0.06);
    border: 1px solid rgba(191, 90, 242, 0.3);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    min-width: 240px;
}

.indie-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 auto 16px;
}

.indie-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.indie-role {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.indie-location {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.indie-mail {
    display: inline-block;
    color: var(--accent-purple);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid rgba(191, 90, 242, 0.3);
    border-radius: 10px;
    transition: all 0.2s;
}

.indie-mail:hover {
    background: rgba(191, 90, 242, 0.1);
}

/* --- Larger button variant --- */
.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}
