/* ============================================================
   Pro Paradise AI Beach Camp - Marketing Page
   Sunset + Energy: AI is eating the world. But we eat first.
   ============================================================ */

:root {
    /* Palette */
    --ocean-deep:    #061d27;
    --ocean-night:   #0e3a47;
    --ocean:         #1e5f6f;
    --ocean-light:   #2c8497;
    --sunset:        #ff8a3d;
    --sunset-hot:    #ff5c2b;
    --sunset-pink:   #ff7a8a;
    --sunset-deep:   #e63946;
    --sunset-glow:   #ffd29a;
    --palm:          #1f7a4d;
    --palm-deep:     #082818;
    --sand:          #f4e4c1;
    --sand-light:    #fffaf0;
    --ink:           #11151a;
    --ink-soft:      #3a4a52;
    --line:          rgba(30, 95, 111, 0.18);
    --shadow-soft:   0 6px 24px rgba(14, 58, 71, 0.10);
    --shadow-card:   0 12px 40px rgba(14, 58, 71, 0.14);
    --shadow-warm:   0 10px 36px rgba(255, 92, 43, 0.22);

    /* Type */
    --ff-hero:    'Bungee Shade', 'Permanent Marker', 'Inter', system-ui, sans-serif;
    --ff-display: 'Permanent Marker', 'Inter', system-ui, sans-serif;
    --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    padding: 0;
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--sand-light);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--sunset-hot); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--sunset-deep); }

/* ============================================================
   BRAND WORDMARK (CSS-only)
   ============================================================ */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ff-body);
    text-decoration: none;
    color: var(--ink);
}
.brand-mark {
    position: relative;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}
.brand-sun {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 40%, var(--sunset-glow), var(--sunset) 55%, var(--sunset-hot));
    box-shadow: 0 0 20px rgba(255, 138, 61, 0.6);
}
.brand-palm {
    position: absolute;
    inset: 4px 4px 0 4px;
    background:
        radial-gradient(circle at 30% 90%, var(--palm-deep) 0 4px, transparent 5px),
        radial-gradient(circle at 70% 90%, var(--palm-deep) 0 4px, transparent 5px);
}
.brand-palm::before, .brand-palm::after {
    content: '';
    position: absolute;
    bottom: 2px;
    width: 3px;
    height: 18px;
    background: var(--palm-deep);
    border-radius: 2px;
    transform-origin: bottom center;
}
.brand-palm::before { left: 28%; transform: rotate(-8deg); }
.brand-palm::after  { left: 65%; transform: rotate(10deg); }

.brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-pro {
    color: var(--sunset-hot);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.01em;
}
.brand-paradise {
    color: var(--ocean);
    font-weight: 800;
    font-size: 18px;
    margin-left: 4px;
    letter-spacing: -0.01em;
}
.brand-sub {
    font-family: var(--ff-body);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: 2px;
    font-weight: 600;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    background: rgba(255, 250, 240, 0.82);
    border-bottom: 1px solid var(--line);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--sunset-hot); }
.nav-cta {
    padding: 9px 18px;
    background: var(--sunset-hot);
    color: #fff !important;
    border-radius: 100px;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 18px rgba(255, 92, 43, 0.35);
}
.nav-cta:hover { background: var(--sunset-deep); color: #fff !important; transform: translateY(-1px); }

@media (max-width: 760px) {
    .nav { padding: 12px 16px; flex-wrap: wrap; gap: 10px; }
    .nav-links { gap: 14px; font-size: 13px; flex-wrap: wrap; justify-content: flex-end; }
    .nav-links a:not(.nav-cta) { display: none; }
    .nav-links .nav-cta { display: inline-block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 24px 80px;
    overflow: hidden;
    isolation: isolate;
}
.hero-sky {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, #ffb56b 0%, #ff8a3d 25%, #ff5c2b 50%, #e63946 70%, #6b1a3a 88%, #0e3a47 100%);
    z-index: -3;
}
.hero-sun {
    position: absolute;
    top: 22%; left: 50%;
    transform: translateX(-50%);
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff6e0 0%, var(--sunset-glow) 25%, #ffb56b 55%, transparent 75%);
    filter: blur(1.5px);
    z-index: -2;
    animation: sunPulse 6s ease-in-out infinite;
}
@keyframes sunPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.96; }
    50%      { transform: translateX(-50%) scale(1.06); opacity: 1; }
}
.hero-ocean {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 32%;
    background: linear-gradient(180deg, #1e5f6f 0%, var(--ocean-night) 60%, var(--ocean-deep) 100%);
    z-index: -2;
}
.hero-waves {
    position: absolute;
    left: 0; right: 0;
    bottom: 26%;
    height: 90px;
    z-index: -1;
}
.hero-waves svg { width: 100%; height: 100%; }
.hero-waves path {
    fill: rgba(255, 250, 240, 0.45);
    animation: waveShift 8s ease-in-out infinite;
}
.hero-waves-2 {
    bottom: 18%;
    height: 70px;
}
.hero-waves-2 path {
    fill: rgba(255, 250, 240, 0.22);
    animation: waveShift 11s ease-in-out infinite reverse;
}
@keyframes waveShift {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-30px); }
}

.hero-palms {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}
.palm {
    position: absolute;
    bottom: 0;
    width: 220px;
    height: 340px;
    transform-origin: bottom center;
    filter: drop-shadow(0 -4px 16px rgba(0,0,0,0.25));
}
.palm-left { left: -10px; animation: palmSwayLeft 7s ease-in-out infinite; }
.palm-right { right: -10px; animation: palmSway 7s ease-in-out infinite; animation-delay: -3.5s; }
@keyframes palmSway {
    0%, 100% { transform: rotate(0deg); }
    50%      { transform: rotate(2deg); }
}
@keyframes palmSwayLeft {
    0%, 100% { transform: scaleX(-1) rotate(0deg); }
    50%      { transform: scaleX(-1) rotate(2deg); }
}

@media (max-width: 760px) {
    .palm { width: 140px; height: 230px; opacity: 0.9; }
    .hero-sun { width: 240px; height: 240px; }
}

.hero-content {
    position: relative;
    max-width: 920px;
    margin: 60px auto 0;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 16px rgba(14, 58, 71, 0.45);
    z-index: 2;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    background: rgba(255, 250, 240, 0.18);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 250, 240, 0.4);
    margin-bottom: 26px;
    color: #fff;
    font-weight: 600;
}
.hero-title {
    font-family: var(--ff-hero);
    font-size: clamp(38px, 7.5vw, 78px);
    line-height: 1.0;
    margin: 0 0 24px;
    font-weight: 400;
    letter-spacing: -0.01em;
}
.hero-display {
    display: block;
}
.hero-title .accent {
    background: linear-gradient(90deg, #ffd29a 0%, #fff 50%, #ff8a3d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 32px rgba(255, 138, 61, 0.45);
}
.hero-sub {
    font-family: var(--ff-body);
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.55;
    max-width: 620px;
    margin: 0 auto 36px;
    opacity: 0.97;
    font-weight: 500;
}
.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero-stats {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-stats > div {
    display: flex; flex-direction: column; align-items: center;
    background: rgba(255, 250, 240, 0.12);
    backdrop-filter: blur(10px);
    padding: 14px 22px;
    border-radius: 14px;
    border: 1px solid rgba(255, 250, 240, 0.28);
    min-width: 130px;
}
.hero-stats strong {
    font-family: var(--ff-display);
    font-size: 26px;
    margin-bottom: 2px;
    font-weight: 400;
    letter-spacing: 0.01em;
}
.hero-stats span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.9;
    font-weight: 600;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    font-family: var(--ff-body);
    text-decoration: none;
}
.btn-primary {
    background: var(--sunset-hot);
    color: #fff;
    box-shadow: 0 10px 28px rgba(255, 92, 43, 0.45);
}
.btn-primary:hover {
    background: var(--sunset-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(230, 57, 70, 0.55);
}
.btn-ghost {
    background: rgba(255, 250, 240, 0.15);
    color: #fff;
    border-color: rgba(255, 250, 240, 0.4);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255, 250, 240, 0.3);
    color: #fff;
    transform: translateY(-2px);
}
.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 100px 24px;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
}
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}
.eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sunset-hot);
    font-weight: 700;
    margin-bottom: 14px;
}
.section h2 {
    font-family: var(--ff-display);
    font-size: clamp(32px, 4.8vw, 50px);
    line-height: 1.15;
    margin: 0 0 18px;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -0.01em;
}
.section h3 {
    font-family: var(--ff-body);
    font-size: 22px;
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.lede {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem { background: linear-gradient(180deg, var(--sand-light) 0, #fff5e6 100%); }
.problem-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.problem-card {
    position: relative;
    padding-top: 56px;
}
.problem-num {
    position: absolute;
    top: 22px;
    left: 28px;
    font-family: var(--ff-display);
    font-size: 26px;
    color: var(--sunset-hot);
    font-weight: 400;
    letter-spacing: 0.05em;
    opacity: 0.85;
}
.problem-closer {
    text-align: center;
    margin-top: 50px;
    font-size: clamp(20px, 2.5vw, 26px);
    color: var(--ocean-night);
    font-family: var(--ff-display);
    font-weight: 400;
    letter-spacing: -0.005em;
}
.problem-closer strong { color: var(--sunset-hot); }

/* ============================================================
   CARDS (shared)
   ============================================================ */
.grid {
    display: grid;
    gap: 24px;
}

.card {
    background: rgba(255, 250, 240, 0.85);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 32px 28px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    backdrop-filter: blur(14px);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 138, 61, 0.5);
}
.card p {
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.65;
}

/* ============================================================
   DAY TIMELINE
   ============================================================ */
.day { background: linear-gradient(180deg, #fff5e6 0, rgba(255, 138, 61, 0.06) 100%); }
.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 18px;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 96px;
    width: 3px;
    background: linear-gradient(180deg, var(--sunset-glow), var(--sunset-hot), var(--ocean-night));
    border-radius: 4px;
    opacity: 0.45;
}
.timeline li {
    background: rgba(255, 250, 240, 0.9);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px 26px 22px 120px;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease;
    backdrop-filter: blur(8px);
}
.timeline li:hover { transform: translateX(6px); }
.timeline .time {
    position: absolute;
    left: 16px;
    top: 22px;
    width: 90px;
    text-align: center;
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--sunset) 0%, var(--sunset-hot) 100%);
    padding: 8px 0;
    border-radius: 100px;
    box-shadow: 0 4px 14px rgba(255, 92, 43, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.timeline h3 { margin: 0 0 6px; }
.timeline p { margin: 0; color: var(--ink-soft); }

.day-pullquote {
    margin: 60px auto 0;
    max-width: 800px;
    padding: 28px 32px;
    background: rgba(255, 138, 61, 0.08);
    border-left: 4px solid var(--sunset-hot);
    border-radius: 14px;
    text-align: center;
}
.day-pullquote p {
    margin: 0;
    font-family: var(--ff-display);
    font-size: clamp(18px, 2vw, 22px);
    color: var(--ocean-night);
    font-weight: 400;
    line-height: 1.5;
}
.day-pullquote strong { color: var(--sunset-hot); }

@media (max-width: 600px) {
    .timeline::before { left: 38px; }
    .timeline li { padding: 18px 18px 18px 82px; }
    .timeline .time { left: 6px; width: 62px; font-size: 10px; padding: 6px 0; }
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations { background: linear-gradient(180deg, rgba(255, 138, 61, 0.06) 0, rgba(30, 95, 111, 0.08) 100%); }
.loc-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.loc-card {
    background: rgba(255, 250, 240, 0.92);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    transition: all 0.3s ease;
    backdrop-filter: blur(14px);
}
.loc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 138, 61, 0.5);
}

.loc-art {
    position: relative;
    height: 170px;
    overflow: hidden;
}
.loc-art > * { position: absolute; }
.loc-sky    { inset: 0; }
.loc-sun    { width: 80px; height: 80px; border-radius: 50%; top: 20px; right: 30px; background: radial-gradient(circle, var(--sunset-glow), var(--sunset)); box-shadow: 0 0 30px rgba(255, 138, 61, 0.65); }
.loc-water  { left: 0; right: 0; bottom: 0; height: 55%; }

.loc-art-portugal .loc-sky    { background: linear-gradient(180deg, #ff8a3d 0%, #e63946 45%, #2c8497 100%); }
.loc-art-portugal .loc-water  { background: linear-gradient(180deg, #2c8497, var(--ocean-deep)); }
.loc-art-portugal .loc-cliff  { bottom: 30%; left: 0; width: 50%; height: 50%; background: linear-gradient(135deg, #6b4f20, #3a2410); clip-path: polygon(0 60%, 30% 30%, 60% 50%, 80% 20%, 100% 40%, 100% 100%, 0 100%); }

.loc-art-tarifa  .loc-sky    { background: linear-gradient(180deg, #ff8a3d 0%, #ffd29a 45%, #2c8497 100%); }
.loc-art-tarifa  .loc-water  { background: linear-gradient(180deg, #2c8497, var(--ocean)); }
.loc-art-tarifa  .loc-windkite { top: 30%; right: 40px; width: 30px; height: 30px; background: var(--sunset-deep); transform: rotate(45deg); }
.loc-art-tarifa  .loc-windkite::after { content: ''; position: absolute; top: 30px; left: 15px; width: 1px; height: 60px; background: rgba(255,255,255,0.6); }

.loc-art-sardinia .loc-sky   { background: linear-gradient(180deg, #ffd29a 0%, #ff8a3d 40%, #1e5f6f 100%); }
.loc-art-sardinia .loc-water { background: linear-gradient(180deg, #4ec3a8 0%, #1e5f6f 100%); }
.loc-art-sardinia .loc-mount { bottom: 38%; left: 0; right: 0; height: 26%; background: linear-gradient(135deg, #4a3a28 0%, #2a1f12 100%); clip-path: polygon(0 90%, 12% 40%, 28% 55%, 42% 25%, 58% 50%, 72% 30%, 88% 55%, 100% 35%, 100% 100%, 0 100%); }

.loc-art-cyclades .loc-sky   { background: linear-gradient(180deg, #ff8a3d 0%, #ffd29a 35%, #2c8497 100%); }
.loc-art-cyclades .loc-water { background: linear-gradient(180deg, #2c8497 0%, #0e3a47 100%); }
.loc-art-cyclades .loc-village { bottom: 38%; left: 0; right: 0; height: 26%; background:
    radial-gradient(ellipse at 15% 100%, #fff 0 20%, transparent 21%),
    radial-gradient(ellipse at 35% 100%, #fff 0 24%, transparent 25%),
    radial-gradient(ellipse at 60% 100%, #fff 0 22%, transparent 23%),
    radial-gradient(ellipse at 85% 100%, #fff 0 20%, transparent 21%); }
.loc-art-cyclades .loc-village::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: rgba(255,255,255,0.85); }

.loc-body { padding: 22px 24px; }
.badge {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    background: rgba(255, 138, 61, 0.15);
    color: var(--sunset-hot);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 10px;
    font-weight: 700;
    border: 1px solid rgba(255, 138, 61, 0.4);
}
.loc-body p { color: var(--ink-soft); margin: 6px 0 12px; }

.quality-badge {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(30, 95, 111, 0.12);
    color: var(--ocean);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
}

.locations-note {
    text-align: center;
    margin: 40px auto 0;
    color: var(--ink-soft);
    font-size: 14px;
    font-style: italic;
}

/* ============================================================
   CROWD / PERSONAS
   ============================================================ */
.crowd { background: linear-gradient(180deg, rgba(30, 95, 111, 0.08) 0, rgba(255, 138, 61, 0.05) 100%); }
.persona-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.persona-card {
    background: rgba(255, 250, 240, 0.92);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 30px 28px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(14px);
}
.persona-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 138, 61, 0.45);
}
.persona-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-light) 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
    font-weight: 700;
}
.persona-card p {
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.65;
}

.crowd-closer {
    text-align: center;
    margin-top: 60px;
    font-size: clamp(18px, 2.2vw, 24px);
    color: var(--ocean-night);
    font-family: var(--ff-display);
    font-weight: 400;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.crowd-closer strong { color: var(--sunset-hot); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: linear-gradient(180deg, rgba(255, 138, 61, 0.05) 0, var(--sand-light) 100%); }
.pricing-cards {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-bottom: 28px;
}
.price-card {
    background: rgba(255, 250, 240, 0.95);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    backdrop-filter: blur(8px);
}
.price-card.highlight {
    border-color: var(--sunset-hot);
    transform: scale(1.04);
    box-shadow: var(--shadow-warm);
    background: #fff;
}
.price-card .ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sunset-hot);
    color: #fff;
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(255, 92, 43, 0.45);
    white-space: nowrap;
}
.price-card h3 { margin: 0 0 12px; color: var(--ocean); }
.price-card .price {
    font-family: var(--ff-display);
    font-size: 30px;
    color: var(--ink);
    font-weight: 400;
    margin: 12px 0 16px;
    letter-spacing: -0.01em;
}
.price-card p { color: var(--ink-soft); margin: 0; line-height: 1.6; }
.pricing-note {
    text-align: center;
    color: var(--ink-soft);
    font-size: 13px;
    margin: 0 auto;
    max-width: 720px;
    font-style: italic;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--sand-light); }
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-list details {
    background: rgba(255, 250, 240, 0.9);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 12px;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}
.faq-list details[open] {
    border-color: var(--sunset-hot);
    background: #fff;
}
.faq-list summary {
    font-family: var(--ff-body);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    color: var(--ink);
    padding-right: 32px;
    position: relative;
    list-style: none;
    user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: '+';
    position: absolute;
    right: 0; top: -2px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--sunset-hot);
    color: #fff;
    text-align: center;
    line-height: 26px;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.25s ease;
}
.faq-list details[open] summary::after { content: '-'; transform: rotate(180deg); }
.faq-list p {
    margin: 14px 0 0;
    color: var(--ink-soft);
    line-height: 1.65;
}

/* ============================================================
   WAITLIST FORM
   ============================================================ */
.waitlist {
    background: linear-gradient(135deg, var(--ocean-night) 0%, var(--ocean) 50%, var(--ocean-light) 100%);
    color: #fff;
    padding: 100px 24px;
    max-width: none;
    margin: 0;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}
.waitlist::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 138, 61, 0.32), transparent 50%);
    z-index: -1;
}
.waitlist::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 92, 43, 0.18), transparent 50%);
    z-index: -1;
}
.waitlist-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.waitlist-copy h2 { color: #fff; }
.waitlist-copy .eyebrow { color: var(--sunset-glow); }
.waitlist-copy p, .waitlist-copy li { color: rgba(255, 250, 240, 0.92); }
.waitlist-checks {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}
.waitlist-checks li {
    padding: 6px 0 6px 30px;
    position: relative;
}
.waitlist-checks li::before {
    content: '';
    position: absolute;
    left: 0; top: 11px;
    width: 18px; height: 18px;
    background: var(--sunset-hot);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 92, 43, 0.4);
}
.waitlist-checks li::after {
    content: '';
    position: absolute;
    left: 4px; top: 15px;
    width: 9px; height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.waitlist-form {
    background: rgba(255, 250, 240, 0.97);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.3);
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.field {
    margin-bottom: 18px;
}
.field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--ink);
    letter-spacing: 0.01em;
}
.field .required { color: var(--sunset-hot); }
.field .optional { color: var(--ink-soft); font-weight: 500; font-size: 12px; }
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--sunset-hot);
    box-shadow: 0 0 0 4px rgba(255, 138, 61, 0.18);
}
.field textarea { resize: vertical; min-height: 70px; }

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}
.form-actions .btn-primary { width: 100%; }
.legal-note {
    font-size: 12px;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.5;
    text-align: center;
}
.legal-note a { color: var(--sunset-hot); text-decoration: underline; }

.form-status {
    margin-top: 16px;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    min-height: 1px;
}
.form-status.is-success {
    padding: 14px 16px;
    background: rgba(76, 175, 80, 0.14);
    border: 1px solid rgba(76, 175, 80, 0.4);
    border-radius: 12px;
    color: #1f7a4d;
    font-weight: 600;
}
.form-status.is-error {
    padding: 14px 16px;
    background: rgba(230, 57, 70, 0.14);
    border: 1px solid rgba(230, 57, 70, 0.45);
    border-radius: 12px;
    color: var(--sunset-deep);
}

/* Success-state: replace form with manifesto */
.waitlist-form.is-done {
    background: linear-gradient(135deg, rgba(255, 138, 61, 0.18) 0%, rgba(255, 92, 43, 0.10) 100%);
    border: 1px solid rgba(255, 138, 61, 0.4);
    text-align: center;
    padding: 44px 32px;
}
.waitlist-form.is-done .field,
.waitlist-form.is-done .form-actions,
.waitlist-form.is-done .form-status { display: none; }
.success-block {
    display: none;
}
.waitlist-form.is-done .success-block {
    display: block;
}
.success-check {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #1f7a4d;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(31, 122, 77, 0.35);
}
.success-check::after {
    content: '';
    width: 18px; height: 9px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg) translateY(-3px);
}
.success-block h3 {
    font-family: var(--ff-display);
    font-size: clamp(22px, 3vw, 28px);
    color: var(--ocean-night);
    margin: 0 0 14px;
    font-weight: 400;
}
.success-block p {
    color: var(--ink);
    line-height: 1.7;
    margin: 0 0 12px;
    font-size: 15px;
}
.success-block .m-call {
    font-family: var(--ff-display);
    font-size: 18px;
    color: var(--sunset-hot);
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-top: 18px;
}

@media (max-width: 860px) {
    .waitlist-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   MANIFESTO CLOSER (dark beach)
   ============================================================ */
.manifesto {
    position: relative;
    padding: 120px 24px 100px;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    text-align: center;
}
.manifesto-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 50% 110%, rgba(255, 138, 61, 0.35) 0%, transparent 55%),
        linear-gradient(180deg, #0a1018 0%, #061d27 40%, #1e1410 75%, #6b1a1a 100%);
}
.m-sun {
    position: absolute;
    bottom: -120px; left: 50%;
    transform: translateX(-50%);
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, #ff8a3d 0%, rgba(255, 92, 43, 0.5) 35%, transparent 70%);
    filter: blur(8px);
    animation: sunPulse 8s ease-in-out infinite;
}
.m-horizon {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 12%;
    background: linear-gradient(180deg, transparent, rgba(255, 138, 61, 0.25) 50%, rgba(230, 57, 70, 0.4));
    filter: blur(2px);
}
.m-stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 12% 20%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 28% 35%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1.5px 1.5px at 48% 15%, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 65% 28%, rgba(255,255,255,0.55), transparent),
        radial-gradient(1.5px 1.5px at 82% 18%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 93% 40%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 8% 50%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 22% 8%, rgba(255,255,255,0.6), transparent);
}
.manifesto-inner {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.manifesto-lines {
    margin-bottom: 50px;
}
.m-line {
    font-family: var(--ff-display);
    font-size: clamp(22px, 3.5vw, 38px);
    line-height: 1.25;
    margin: 0 0 18px;
    font-weight: 400;
    color: rgba(255, 250, 240, 0.95);
    letter-spacing: -0.005em;
}
.m-line-yes {
    font-size: clamp(28px, 4.5vw, 48px);
    color: var(--sunset-glow);
    margin-bottom: 24px;
}
.m-line-strong {
    font-size: clamp(30px, 5vw, 56px);
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 138, 61, 0.6);
    margin-bottom: 40px;
}
.m-line-strong em { font-style: italic; color: var(--sunset-hot); text-shadow: 0 0 24px rgba(255, 92, 43, 0.7); }
.m-tri {
    font-size: clamp(18px, 2.4vw, 26px);
    color: rgba(255, 250, 240, 0.92);
    font-family: var(--ff-body);
    font-weight: 500;
    letter-spacing: 0.005em;
    margin-bottom: 38px;
}
.m-tri strong { color: var(--sunset-glow); font-weight: 700; }
.m-welcome {
    color: var(--sunset-hot);
    margin-bottom: 18px;
}
.m-paradise {
    color: rgba(255, 250, 240, 0.95);
}
.m-paradise span {
    display: block;
    color: var(--sunset-glow);
    margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--ocean-deep);
    color: rgba(255, 250, 240, 0.85);
    padding: 50px 24px 36px;
}
.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
}
.footer .brand-pro    { color: var(--sunset-hot); }
.footer .brand-paradise { color: #fff; }
.footer .brand-sub    { color: rgba(255, 250, 240, 0.6); }
.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links a {
    color: rgba(255, 250, 240, 0.85);
    font-size: 14px;
    font-weight: 600;
}
.footer-links a:hover { color: var(--sunset-hot); }
.footer-meta {
    font-size: 13px;
    color: rgba(255, 250, 240, 0.65);
    line-height: 1.65;
    margin: 0;
}
.footer-meta .muted { color: rgba(255, 250, 240, 0.45); }

/* ============================================================
   REVEAL ANIMATIONS (on scroll)
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   LEGAL MINI PAGES
   ============================================================ */
.legal-page {
    max-width: 760px;
    margin: 120px auto 80px;
    padding: 0 24px;
    line-height: 1.75;
}
.legal-page h1 {
    font-family: var(--ff-display);
    font-size: clamp(28px, 4vw, 38px);
    margin: 0 0 24px;
    letter-spacing: -0.01em;
    font-weight: 400;
}
.legal-page h2 {
    font-family: var(--ff-body);
    font-size: 22px;
    margin: 32px 0 12px;
    font-weight: 700;
}
.legal-page p, .legal-page li {
    color: var(--ink-soft);
}
.legal-page a { text-decoration: underline; }
.legal-page .back {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--sunset-hot);
    font-size: 14px;
    font-weight: 600;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    html { scroll-behavior: auto; }
}
