/* FuelNear landing — night forecourt atmosphere */

:root {
    --bg: #0B1220;
    --bg-elevated: #121A27;
    --text: #F4F7FB;
    --text-muted: #94A3B8;
    --petrol: #F5B942;
    --petrol-soft: rgba(245, 185, 66, 0.16);
    --diesel: #2DD4BF;
    --diesel-soft: rgba(45, 212, 191, 0.14);
    --line: rgba(148, 163, 184, 0.18);
    --font-display: "Syne", sans-serif;
    --font-body: "Manrope", sans-serif;
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.fuel-landing {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: var(--bg);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.fuel-atmosphere {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.55;
    animation: orbFloat 12s ease-in-out infinite alternate;
}
.orb-petrol {
    width: min(52vw, 420px);
    height: min(52vw, 420px);
    left: -8%;
    top: 8%;
    background: radial-gradient(circle, rgba(245, 185, 66, 0.55), transparent 68%);
}
.orb-diesel {
    width: min(48vw, 380px);
    height: min(48vw, 380px);
    right: -6%;
    top: 28%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.4), transparent 70%);
    animation-delay: -4s;
}
.grid-fade {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(circle at 50% 20%, black, transparent 75%);
    opacity: 0.35;
}
@keyframes orbFloat {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(18px, 24px, 0) scale(1.06); }
}

.fuel-nav,
.fuel-hero,
.fuel-section,
.fuel-final,
.fuel-footer {
    position: relative;
    z-index: 1;
}

.fuel-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: calc(18px + var(--safe-top)) 6vw 12px;
}
.fuel-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.fuel-brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(245, 185, 66, 0.35);
}
.fuel-brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}
.fuel-brand-name span { color: var(--petrol); }
.fuel-nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.fuel-nav-link {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
}
.fuel-nav-cta,
.btn-fuel-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #F5B942, #E89A1C);
    color: #1A1205;
    font-weight: 750;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(245, 185, 66, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.fuel-nav-cta:hover,
.btn-fuel-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(245, 185, 66, 0.36);
}

.fuel-hero {
    min-height: calc(100svh - 76px);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
    padding: 18px 6vw 48px;
}
.fuel-brand-lockup {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.4rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.95;
    background: linear-gradient(120deg, #FFF7E6 10%, #F5B942 45%, #2DD4BF 95%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: brandIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.fuel-hero h1 {
    margin: 0 0 16px;
    max-width: 12ch;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.4vw, 2.7rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    animation: riseIn 0.8s 0.12s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.fuel-hero h1 em {
    font-style: normal;
    color: var(--diesel);
}
.fuel-lead {
    margin: 0 0 28px;
    max-width: 36rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    animation: riseIn 0.8s 0.22s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.fuel-hero-cta {
    animation: riseIn 0.8s 0.32s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.btn-fuel-primary {
    padding: 16px 24px;
    font-size: 1.02rem;
}
.fuel-hero-visual {
    justify-self: end;
    width: min(100%, 520px);
    animation: visualIn 1s 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.fuel-hero-visual img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

@keyframes brandIn {
    from { opacity: 0; transform: translateY(18px) scale(0.98); filter: blur(6px); }
    to { opacity: 1; transform: none; filter: none; }
}
@keyframes riseIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
}
@keyframes visualIn {
    from { opacity: 0; transform: translateX(24px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

.fuel-section {
    padding: 72px 6vw;
    border-top: 1px solid var(--line);
}
.fuel-kicker {
    margin: 0 0 10px;
    color: var(--petrol);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}
.fuel-section h2,
.fuel-final h2 {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.fuel-section-copy {
    margin: 0;
    color: var(--text-muted);
    max-width: 36rem;
    font-size: 1.05rem;
}
.fuel-steps {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.fuel-steps li {
    padding: 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(18, 26, 39, 0.95), rgba(11, 18, 32, 0.9));
    border: 1px solid var(--line);
}
.step-index {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--diesel);
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 0.04em;
}
.fuel-steps strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}
.fuel-steps p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.fuel-section-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}
.fuel-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.fuel-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    font-weight: 600;
}
.fuel-points i {
    width: 28px;
    text-align: center;
    color: var(--petrol);
}

.fuel-final {
    margin: 0 6vw 72px;
    padding: 48px 28px;
    border-radius: 28px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 20%, var(--petrol-soft), transparent 45%),
        radial-gradient(circle at 80% 30%, var(--diesel-soft), transparent 40%),
        var(--bg-elevated);
    border: 1px solid var(--line);
}
.fuel-nav-whatsapp,
.btn-fuel-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #25D366;
    color: #052e16;
    font-weight: 750;
    font-size: 0.92rem;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.fuel-nav-whatsapp:hover,
.btn-fuel-whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.36);
}
.fuel-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
}
.btn-fuel-whatsapp {
    padding: 16px 22px;
    font-size: 1.02rem;
}
@media (max-width: 640px) {
    .fuel-nav-whatsapp span { display: none; }
    .fuel-nav-whatsapp { padding: 10px 12px; }
}

.fuel-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 24px 6vw calc(24px + var(--safe-bottom));
    border-top: 1px solid var(--line);
    color: var(--text-muted);
    font-size: 0.9rem;
}
.fuel-footer a { color: var(--diesel); font-weight: 600; }

@media (max-width: 900px) {
    .fuel-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 28px;
    }
    .fuel-hero-copy { order: 1; }
    .fuel-hero-visual { order: 2; justify-self: stretch; width: 100%; }
    .fuel-steps,
    .fuel-section-split { grid-template-columns: 1fr; }
    .fuel-brand-lockup { font-size: clamp(2.6rem, 14vw, 4.2rem); }
}

@media (prefers-reduced-motion: reduce) {
    .orb,
    .fuel-brand-lockup,
    .fuel-hero h1,
    .fuel-lead,
    .fuel-hero-cta,
    .fuel-hero-visual { animation: none !important; }
}
