/* ========================================
   WindTrac — Marketing Website
   ======================================== */

:root {
    --bg-deep: #0e1530;
    --bg-medium: #131c3f;
    --bg-light: #1b264f;
    --cyan: #22d3ee;
    --cyan-glow: rgba(34, 211, 238, 0.15);
    --gold: #fbbf24;
    --green: #34d399;
    --text-primary: #eaf2ff;
    --text-secondary: #9fb3d8;
    --text-tertiary: #6b80ad;
    --radius: 12px;
    --radius-lg: 16px;
}

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

body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* ---- Nav ---- */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(14, 21, 48, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(34, 211, 238, 0.1);
    transition: background 0.3s;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-primary);
}

/* Icons */
.icon { width: 20px; height: 20px; stroke-width: 2; }
.icon-lg { width: 28px; height: 28px; }
.icon-xl { width: 36px; height: 36px; opacity: 0.4; }

.logo-icon { display: flex; }
.logo-icon img { width: 32px; height: 32px; border-radius: 8px; }
.logo-text { font-size: 18px; font-weight: 700; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-links a.btn,
.nav-links a.btn:hover {
    color: var(--bg-deep);
    font-weight: 800;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}

/* ---- Buttons ---- */

.btn {
    display: inline-block;
    background: var(--cyan);
    color: var(--bg-deep);
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 10px;
    transition: background 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
}

.btn:hover { background: #5ce5f7; transform: translateY(-1px); }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 16px 36px; font-size: 17px; border-radius: 12px; }
.btn-white { background: #fff; color: var(--bg-deep); }
.btn-white:hover { background: #e8f1ff; }

/* Outlined "web app" button */
.btn-web {
    background: transparent;
    color: var(--cyan);
    border: 1.5px solid rgba(34, 211, 238, 0.5);
}
.btn-web:hover {
    background: var(--cyan-glow);
    border-color: var(--cyan);
    color: var(--cyan);
}

/* ---- App Store badge button ---- */

.appstore-btn {
    display: inline-block;
    line-height: 0;
    transition: transform 0.15s ease, opacity 0.2s ease;
}

.appstore-btn:hover {
    transform: translateY(-1px);
    opacity: 0.88;
}

.appstore-btn img {
    display: block;
    height: 56px;
    width: auto;
}

/* ---- Hero ---- */

.hero {
    padding: 140px 0 80px;
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(900px 500px at 80% 0%, rgba(34, 211, 238, 0.08), transparent 60%),
        radial-gradient(700px 400px at 0% 30%, rgba(59, 130, 246, 0.07), transparent 55%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--cyan-glow);
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(34, 211, 238, 0.25);
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-sub strong { color: var(--text-primary); }

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-note {
    font-size: 13px;
    color: var(--text-tertiary);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 520px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.2);
    padding: 6px 14px;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
    cursor: default;
}

.hero-tag:hover {
    background: rgba(34, 211, 238, 0.16);
    color: var(--text-primary);
    border-color: rgba(34, 211, 238, 0.4);
    transform: translateY(-1px);
}

/* Featured tag — highlights the key differentiator (Offline Maps) */
.hero-tag-feature {
    color: #06222b;
    background: var(--cyan);
    border-color: var(--cyan);
    font-weight: 700;
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.35);
}

.hero-tag-feature::before {
    content: "★ ";
    letter-spacing: 0;
}

.hero-tag-feature:hover {
    background: var(--cyan);
    color: #06222b;
    border-color: var(--cyan);
}

/* Phone mockup */

.phone-mockup {
    width: 280px;
    margin: 0 auto;
    border-radius: 36px;
    border: 3px solid rgba(34, 211, 238, 0.22);
    background: var(--bg-medium);
    padding: 12px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.45);
}

.phone-screen {
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
    background: var(--bg-deep);
}

.phone-screen picture,
.phone-screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Wind stage (animated forecast-map mock) ---- */

.wind-stage {
    position: relative;
    background: linear-gradient(160deg, #0a1230 0%, #122046 55%, #0a1738 100%);
    display: block;
    padding: 0;
}

.wind-canvas {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.wind-lines {
    position: absolute;
    inset: 0;
    width: 130%;
    height: 100%;
}

.wind-lines path {
    fill: none;
    stroke: var(--cyan);
    stroke-width: 1.6;
    stroke-linecap: round;
    opacity: 0.85;
    stroke-dasharray: 26 60;
    filter: drop-shadow(0 0 4px rgba(34, 211, 238, 0.55));
    animation: windFlow 2.6s linear infinite;
}

.wind-lines path:nth-child(2) { stroke: #38bdf8; animation-duration: 3.1s; animation-delay: -0.4s; }
.wind-lines path:nth-child(3) { stroke: #5eead4; animation-duration: 2.9s; animation-delay: -0.8s; }
.wind-lines path:nth-child(4) { stroke: #818cf8; animation-duration: 3.4s; animation-delay: -1.1s; }
.wind-lines path:nth-child(5) { stroke: #22d3ee; animation-duration: 2.7s; animation-delay: -0.6s; }
.wind-lines path:nth-child(6) { stroke: #a78bfa; animation-duration: 3.2s; animation-delay: -1.4s; }

.wind-lines-fast path { animation-duration: 1.8s; }

@keyframes windFlow {
    from { stroke-dashoffset: 86; }
    to   { stroke-dashoffset: 0; }
}

.wind-readout {
    position: absolute;
    top: 16px;
    left: 14px;
    background: rgba(8, 14, 36, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-radius: 12px;
    padding: 10px 12px;
}

.wind-readout-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-tertiary);
}

.wind-readout-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1.1;
    text-shadow: 0 0 24px rgba(34, 211, 238, 0.4);
}

.wind-readout-value span { font-size: 13px; color: var(--text-secondary); font-weight: 700; }

.wind-readout-sub {
    font-size: 9px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.wind-timeline {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 16px;
}

.wind-timeline-bar {
    height: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    overflow: hidden;
}

.wind-timeline-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #5eead4, #22d3ee, #818cf8);
    width: 30%;
    animation: timelinePlay 6s ease-in-out infinite;
}

.wind-timeline-fill-mid { animation-delay: -3s; }

@keyframes timelinePlay {
    0%   { width: 8%; }
    50%  { width: 92%; }
    100% { width: 8%; }
}

.wind-timeline-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 8px;
    color: var(--text-tertiary);
    font-weight: 600;
}

/* ---- Sections ---- */

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---- Data / Models Section ---- */

.data-section { background: var(--bg-medium); }

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

.data-card {
    background: var(--bg-deep);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.2s, transform 0.2s;
}

.data-card:hover {
    border-color: rgba(34, 211, 238, 0.2);
    transform: translateY(-2px);
}

.data-logo-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 44px;
    padding: 0 12px;
    margin-bottom: 14px;
    border-radius: 10px;
    background: var(--cyan-glow);
    border: 1px solid rgba(34, 211, 238, 0.25);
    color: var(--cyan);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
}

.data-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.data-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.data-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 4px;
}

@media (max-width: 900px) {
    .data-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ---- Layers Section (cards) ---- */

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

.score-card {
    background: var(--bg-medium);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.score-card:hover {
    border-color: rgba(34, 211, 238, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.score-icon {
    margin-bottom: 16px;
    color: var(--cyan);
}

.score-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.score-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- Feature Rows ---- */

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--cyan);
    background: var(--cyan-glow);
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-text h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.feature-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

/* CSS-rendered phone screen mocks */
.phone-screen-mock {
    padding: 26px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 4px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 2px;
}

.mock-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.mock-header-icon {
    width: 14px;
    height: 14px;
    color: var(--cyan);
}

.mock-section-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 4px;
    padding: 0 2px;
}

.mock-pro-pill {
    font-size: 9px;
    font-weight: 800;
    color: var(--bg-deep);
    background: var(--gold);
    padding: 3px 8px;
    border-radius: 5px;
    letter-spacing: 0.5px;
}

/* --- Model picker mock --- */
.mock-model-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mock-model {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 8px 10px;
}

.mock-model.is-active {
    background: rgba(34, 211, 238, 0.12);
    border-color: rgba(34, 211, 238, 0.3);
}

.mock-model-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

.mock-model.is-active .mock-model-name { color: var(--cyan); }

.mock-model-tag {
    font-size: 9px;
    color: var(--text-tertiary);
    font-weight: 600;
}

/* --- Saved locations mock --- */
.mock-loc-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mock-loc {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 8px 9px;
}

.mock-loc-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(34, 211, 238, 0.14);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mock-loc-icon svg { width: 14px; height: 14px; }

.mock-loc-meta { flex: 1; min-width: 0; }

.mock-loc-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.mock-loc-sub {
    font-size: 9px;
    color: var(--text-tertiary);
    margin-top: 1px;
}

.mock-loc-val {
    font-size: 14px;
    font-weight: 800;
    color: var(--cyan);
}

.mock-loc-val small { font-size: 8px; color: var(--text-secondary); font-weight: 700; margin-left: 1px; }

.mock-tz-row {
    display: flex;
    gap: 5px;
    margin-top: 6px;
}

.mock-tz {
    flex: 1;
    text-align: center;
    font-size: 9px;
    font-weight: 700;
    color: var(--text-tertiary);
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    padding: 6px 0;
}

.mock-tz.is-active {
    background: rgba(34, 211, 238, 0.14);
    color: var(--cyan);
}

/* --- Offline download mock --- */
.mock-dl-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 11px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.mock-dl-head {
    display: flex;
    align-items: center;
    gap: 9px;
}

.mock-dl-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(52, 211, 153, 0.16);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-dl-icon svg { width: 16px; height: 16px; }

.mock-dl-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

.mock-dl-sub {
    font-size: 9px;
    color: var(--text-tertiary);
    margin-top: 1px;
}

.mock-dl-bar {
    height: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
}

.mock-dl-bar span {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), var(--cyan));
}

.mock-dl-status {
    font-size: 9px;
    font-weight: 600;
    color: var(--green);
}

.mock-region-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.mock-region {
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;
    border-radius: 7px;
    padding: 9px 0;
}

.mock-region.is-active {
    background: rgba(34, 211, 238, 0.12);
    border-color: rgba(34, 211, 238, 0.3);
    color: var(--cyan);
}

/* ---- How It Works ---- */

.how-section { background: var(--bg-medium); }

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

.step {
    text-align: center;
    padding: 32px 24px;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--bg-deep);
    font-size: 20px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- Pricing ---- */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: var(--bg-medium);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
}

.pricing-card-pro {
    border-color: rgba(34, 211, 238, 0.4);
    background:
        radial-gradient(600px 300px at 100% 0%, rgba(34, 211, 238, 0.1), transparent 60%),
        var(--bg-medium);
    box-shadow: 0 20px 60px rgba(34, 211, 238, 0.08);
}

.pricing-flag {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--cyan);
    color: var(--bg-deep);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.3px;
}

.pricing-tier {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cyan);
    margin-bottom: 8px;
}

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

.pricing-price span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-tertiary);
}

.pricing-note {
    font-size: 13px;
    color: var(--text-tertiary);
    margin: 8px 0 20px;
    line-height: 1.6;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-list li strong { color: var(--text-primary); }

.pricing-list svg {
    width: 16px;
    height: 16px;
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-btn { text-align: center; align-self: stretch; }

.pricing-disclaimer {
    max-width: 760px;
    margin: 32px auto 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-tertiary);
    line-height: 1.7;
}

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

/* ---- Support page ---- */

.support-hero {
    padding: 140px 0 40px;
    text-align: center;
}

.support-hero h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.support-hero p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

.support-section { padding-top: 60px; }

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

.support-card {
    background: var(--bg-medium);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.support-card:hover {
    border-color: rgba(34, 211, 238, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.support-icon {
    width: 52px;
    height: 52px;
    background: var(--cyan-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    margin-bottom: 20px;
}

.support-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.support-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.support-card strong { color: var(--text-primary); }

.support-card .btn {
    align-self: flex-start;
}

.support-shortcuts { background: var(--bg-medium); }

.support-shortcut-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 780px;
    margin: 0 auto;
}

.shortcut-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-deep);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: border-color 0.2s, color 0.2s, transform 0.1s;
}

.shortcut-link:hover {
    border-color: rgba(34, 211, 238, 0.3);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.shortcut-link .icon {
    color: var(--cyan);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .support-grid { grid-template-columns: 1fr; }
    .support-shortcut-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .support-hero { padding: 100px 0 20px; }
    .support-hero h1 { font-size: 32px; }
    .support-hero p { font-size: 15px; }
}

/* ---- Legal & support pages ---- */

.legal {
    padding-top: 140px;
    padding-bottom: 80px;
}

.legal-inner {
    max-width: 720px;
    margin: 0 auto;
}

.legal h1 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.legal-updated {
    color: var(--text-tertiary);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.legal h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 40px 0 14px;
    letter-spacing: -0.01em;
}

.legal h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 24px 0 10px;
}

.legal p,
.legal li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 14px;
}

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

.legal a {
    color: var(--cyan);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal a:hover { color: #5ce5f7; }

.legal ul,
.legal ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.legal li { margin-bottom: 6px; }

@media (max-width: 640px) {
    .legal { padding-top: 100px; padding-bottom: 60px; }
    .legal h1 { font-size: 30px; }
    .legal h2 { font-size: 19px; }
}

/* ---- FAQ ---- */

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-item summary {
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: var(--text-tertiary);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--cyan);
}

.faq-item p {
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item a {
    color: var(--cyan);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ---- CTA Section ---- */

.cta-section {
    text-align: center;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-medium) 100%);
    padding: 120px 0;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section > .container > p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---- Footer ---- */

.footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 30px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-top: 8px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.7;
}

/* ---- Responsive ---- */

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero h1 { font-size: 38px; }
    .hero-sub { margin: 0 auto 32px; }
    .hero-cta-row { justify-content: center; }
    .hero-tags { justify-content: center; margin: 0 auto; }
    .hero-image { order: -1; }
    .score-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-row,
    .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; }
    .feature-row.reverse > * { direction: ltr; }
    .steps { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-deep);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-links.open { display: flex; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 100px 0 60px; }
    .hero h1 { font-size: 32px; }
    .hero-sub { font-size: 16px; }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 28px; }
    .score-grid { grid-template-columns: 1fr; }
    .cta-section h2 { font-size: 28px; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .phone-mockup { width: 220px; }
}

/* ========================================
   Animations
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    animation: heroFadeIn 0.8s ease both;
}

.hero-image {
    animation: heroFadeIn 1s ease 0.2s both;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Phone mockup — subtle float */
.phone-mockup {
    animation: phoneFloat 4s ease-in-out infinite;
}

.feature-row:nth-of-type(1) .phone-mockup { animation-delay: -1s; }
.feature-row:nth-of-type(2) .phone-mockup { animation-delay: -1.8s; }
.feature-row:nth-of-type(3) .phone-mockup { animation-delay: -2.6s; }
.feature-row:nth-of-type(4) .phone-mockup { animation-delay: -3.4s; }

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* Hero badge shimmer */
.hero-badge {
    position: relative;
    overflow: hidden;
}

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

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

/* Step numbers — pop in */
.step.visible .step-num {
    animation: stepPop 0.4s ease both;
}

@keyframes stepPop {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ---- Windy-alternative comparison page ---- */
.hero-compare { padding-bottom: 40px; }
.hero-compare .container { display: block; }
.hero-content-wide { max-width: 760px; margin: 0 auto; text-align: center; }
.hero-content-wide .hero-sub { margin-left: auto; margin-right: auto; }
.hero-content-wide .hero-cta { align-items: center; }

.cmp-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.06); }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--bg-medium); }
.cmp-table th, .cmp-table td {
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    vertical-align: top;
}
.cmp-table thead th { font-size: 15px; font-weight: 800; color: var(--text-primary); }
.cmp-table tbody th { font-weight: 600; color: var(--text-secondary); width: 30%; }
.cmp-table tbody td { color: var(--text-primary); }
.cmp-table .cmp-us { background: rgba(34, 211, 238, 0.08); color: var(--text-primary); }
.cmp-table thead .cmp-us { color: var(--cyan); }
.cmp-table tr:last-child th, .cmp-table tr:last-child td { border-bottom: none; }

.cmp-disclaimer { margin-top: 16px; font-size: 12px; color: var(--text-tertiary); line-height: 1.6; max-width: 760px; }

.cmp-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 44px; }
.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--text-primary);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
