/* ============================================================
   FREEDOM BECOMES YOU — App Version
   /weather/css/freedom-becomes-you.css
   ============================================================ */

/* ── Hero Image Banner ── */
.tw-hero-image {
    position: relative;
    width: 100%; height: 0;
    padding-bottom: 20%;
    overflow: hidden;
    background: var(--hum-dark, #1a1a2e);
}
.tw-hero-image__wrap {
    position: absolute;
    inset: 0; width: 100%; height: 100%;
}
.tw-hero-image__wrap img {
    display: block;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
}
.tw-hero-image__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg,
        rgba(20, 20, 35, 0.35) 0%,
        rgba(20, 20, 35, 0.08) 40%,
        rgba(20, 20, 35, 0.05) 60%,
        rgba(20, 20, 35, 0.25) 100%
    );
}
.tw-hero-image__content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; z-index: 2;
    padding: 1rem 2rem;
}
.tw-hero-image__eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 0.4rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
    opacity: 0; animation: heroFadeUp 0.8s ease 0.2s forwards;
}
.tw-hero-image__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4.5vw, 3.2rem);
    font-weight: 700; color: #ffffff;
    margin: 0; line-height: 1.15;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.4);
    opacity: 0; animation: heroFadeUp 0.8s ease 0.4s forwards;
}
.tw-hero-image__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(0.85rem, 2.2vw, 1.25rem);
    font-weight: 400; font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.3rem 0 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
    opacity: 0; animation: heroFadeUp 0.8s ease 0.6s forwards;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero (text only — below banner) ── */
.tw-hero {
    text-align: center;
    padding: 40px 0 44px;
    animation: fadeDown 0.8s ease;
}
.tw-hero__eyebrow {
    font-family: var(--font-body);
    font-size: 12px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--hum-teal); margin-bottom: 20px;
}
.tw-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 7vw, 56px);
    font-weight: 700; line-height: 1.1; margin-bottom: 12px;
    background: linear-gradient(135deg, #e8d0e8 0%, #c8a0d0 40%, #a878b8 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tw-hero__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 400; font-style: italic;
    color: var(--text-muted); margin-bottom: 28px;
}
.tw-hero__intro {
    font-size: 16px; line-height: 1.8;
    color: var(--text-soft);
    max-width: 600px; margin: 0 auto 32px;
}
.tw-hero__scroll-hint {
    display: flex; flex-direction: column;
    align-items: center; gap: 6px;
    color: var(--hum-teal);
    font-size: 13px; font-weight: 600; letter-spacing: 1px;
}
.tw-hero__scroll-hint svg { animation: tw-bounce 2s ease infinite; }
@keyframes tw-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ── Impact Section ── */
.tw-impact { padding: 40px 0 48px; }
.tw-impact__body { max-width: 640px; margin: 0 auto; }
.tw-impact__body p {
    font-size: 15px; line-height: 1.85;
    color: var(--text-soft); margin-bottom: 20px;
}
.tw-impact__body p:last-child { margin-bottom: 0; }
.tw-impact__body em { color: var(--hum-magenta); font-style: italic; }

/* ── Video Section ── */
.tw-video { padding: 40px 0 48px; }
.tw-video__lead {
    font-size: 15px; line-height: 1.7;
    color: var(--text-muted); text-align: center;
    max-width: 520px; margin: 0 auto 24px;
}
.tw-video__wrapper {
    max-width: 680px; margin: 0 auto;
    border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.tw-video__placeholder {
    background: linear-gradient(135deg, rgba(30,20,50,0.9), rgba(40,30,60,0.9));
    aspect-ratio: 16 / 9;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
    position: relative;
}
.tw-video__placeholder::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(197,70,133,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.tw-video__play-icon {
    color: rgba(255,255,255,0.3);
    transition: color 0.3s ease, transform 0.3s ease;
}
.tw-video__placeholder:hover .tw-video__play-icon {
    color: rgba(255,255,255,0.5); transform: scale(1.08);
}
.tw-video__coming-soon {
    font-family: var(--font-heading); font-size: 18px;
    font-style: italic; color: rgba(255,255,255,0.4); margin: 0;
}
.tw-video__note {
    font-size: 13px; color: rgba(255,255,255,0.2); margin: 0;
}

/* ── Steps Section ── */
.tw-process { padding: 40px 0 48px; }
.tw-steps {
    max-width: 640px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 16px;
}
.tw-step {
    background: var(--glass-light);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 24px 24px 22px;
    display: flex; gap: 20px; align-items: flex-start;
    transition: all 0.4s ease; position: relative; overflow: hidden;
}
.tw-step::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--hum-teal), var(--hum-magenta));
    opacity: 0; transition: opacity 0.4s ease;
}
.tw-step:hover {
    background: var(--glass-medium);
    border-color: rgba(255,255,255,0.10);
    transform: translateY(-2px);
}
.tw-step:hover::before { opacity: 1; }

.tw-step__number {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    background: var(--glass-medium);
    border: 1px solid rgba(255,255,255,0.10);
    color: var(--hum-teal);
    font-family: var(--font-heading);
    font-size: 18px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.tw-step__content { flex: 1; padding-top: 4px; }
.tw-step__title {
    font-family: var(--font-heading); font-size: 20px;
    font-weight: 700; color: var(--text-light); margin-bottom: 8px;
}
.tw-step__content p {
    font-size: 14px; line-height: 1.75;
    color: var(--text-soft); margin: 0 0 8px;
}
.tw-step__content p:last-child { margin-bottom: 0; }

/* Step 4 highlight */
.tw-step--highlighted {
    background: linear-gradient(135deg, rgba(40,179,189,0.10), rgba(197,70,133,0.06));
    border-color: rgba(40,179,189,0.20);
}
.tw-step--highlighted .tw-step__number {
    background: linear-gradient(135deg, var(--hum-teal), var(--hum-magenta));
    border-color: transparent; color: #fff;
}
.tw-step--highlighted::before { opacity: 1; }

/* Four Questions list */
.tw-four-questions {
    padding-left: 0; margin: 10px 0 0;
    list-style: none; counter-reset: fq;
}
.tw-four-questions li {
    counter-increment: fq; position: relative;
    padding-left: 28px; margin-bottom: 6px;
    font-size: 14px; line-height: 1.6;
    color: var(--text-soft); font-style: italic;
}
.tw-four-questions li::before {
    content: counter(fq) "."; position: absolute; left: 0;
    font-weight: 700; font-style: normal; color: var(--hum-magenta);
}

/* ── Resources ── */
.tw-resources { padding: 40px 0 48px; }
.tw-resources__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-top: 28px;
}
.tw-resource-card {
    background: var(--glass-light);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 28px 20px 24px;
    text-align: center; transition: all 0.4s ease;
    display: flex; flex-direction: column; align-items: center;
    position: relative; overflow: hidden;
}
.tw-resource-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--hum-teal); opacity: 0.5;
}
.tw-resource-card:hover {
    background: var(--glass-medium);
    border-color: rgba(255,255,255,0.10);
    transform: translateY(-4px);
}
.tw-resource-card__icon { color: var(--hum-teal); margin-bottom: 16px; }
.tw-resource-card h3 {
    font-family: var(--font-heading); font-size: 18px;
    font-weight: 700; color: var(--text-light); margin: 0 0 10px;
}
.tw-resource-card p {
    font-size: 14px; line-height: 1.7;
    color: var(--text-soft); margin: 0 0 18px; flex-grow: 1;
}
.tw-resource-card .cta-btn,
.tw-resource-card .cta-btn-outline { margin-top: auto; }

/* ── CTA (app version — Start Inquiry, not Join) ── */
.tw-cta { padding: 40px 0 56px; }
.tw-cta__card {
    background: linear-gradient(135deg, rgba(91,184,154,0.08), rgba(40,179,189,0.06));
    border: 1px solid var(--clear-border);
    border-radius: 20px; padding: 44px 36px;
    text-align: center; max-width: 640px; margin: 0 auto;
}
.tw-cta__heading {
    font-family: var(--font-heading);
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 700; color: var(--clear-color); margin-bottom: 16px;
}
.tw-cta__body {
    font-size: 15px; line-height: 1.75;
    color: var(--text-soft);
    max-width: 500px; margin: 0 auto 24px;
}
.tw-cta__buttons {
    display: flex; gap: 12px;
    justify-content: center; flex-wrap: wrap;
}
.tw-cta__note {
    font-size: 14px; font-style: italic;
    color: var(--text-muted); margin-top: 20px;
}

/* ── Responsive ── */
@media (max-width: 980px) {
    .tw-resources__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .tw-hero-image { padding-bottom: 25%; }
    .tw-hero-image__title { font-size: 1.5rem; }
    .tw-hero-image__subtitle { font-size: 0.8rem; }
    .tw-hero-image__eyebrow { font-size: 0.6rem; }
    .tw-hero { padding: 36px 0 32px; }
    .tw-resources__grid { grid-template-columns: 1fr; gap: 14px; }
    .tw-step { padding: 20px 18px 18px; gap: 14px; }
    .tw-step__number { width: 38px; height: 38px; font-size: 16px; }
    .tw-step__title { font-size: 18px; }
    .tw-cta__card { padding: 32px 24px; }
    .tw-cta__buttons { flex-direction: column; align-items: center; }
    .tw-cta__buttons .cta-btn,
    .tw-cta__buttons .cta-btn-outline { width: 100%; max-width: 280px; text-align: center; }
}
@media (max-width: 480px) {
    .tw-hero-image { padding-bottom: 30%; }
    .tw-hero-image__title { font-size: 1.3rem; }
}
@media (prefers-reduced-motion: reduce) {
    .tw-hero-image__eyebrow,
    .tw-hero-image__title,
    .tw-hero-image__subtitle { opacity: 1; animation: none; }
}
/* ═══════ BACK NAVIGATION BUBBLE ═══════ */
.back-nav {
    text-align: center;
    padding: 14px 0 6px;
    position: relative;
    z-index: 2;
}
.back-nav .back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.2s ease;
}
.back-nav .back-link:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
}
.back-nav .back-link svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}