@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    --black: #000000;
    --white: #ffffff;
    --grey-700: #555555;
    --grey-400: #8a8a8a;
    --grey-100: #f2f2f2;
    --accent: #d7ff3e;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    --edge: 20px;         /* outer page margin around each black/white block */
    --radius: 40px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { font-family: inherit; }

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 30px 60px;
    position: relative;
    z-index: 100;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--white);
    text-decoration: none;
}

.logo-mark { flex-shrink: 0; color: inherit; }

.footer-brand .logo { color: var(--white); }

.nav-links {
    display: flex;
    gap: 40px;
    margin-right: auto;
    margin-left: 64px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-links a:hover { opacity: 1; }

.btn-nav {
    display: inline-flex;
    align-items: center;
    color: var(--black);
    background: var(--white);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 50px;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.btn-nav:hover { opacity: 0.85; }

/* Mobile nav toggle (hidden on desktop) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-menu-links a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
}

.mobile-menu .btn-about {
    color: var(--white);
    border-color: var(--white);
    margin-bottom: 0;
}

.mobile-menu .btn-about:hover {
    background-color: var(--white);
    color: var(--black);
}

/* --- Shared block system: full-bleed black page, rounded white/black panels --- */
main { display: flex; flex-direction: column; }

.panel {
    margin: 0 var(--edge) var(--edge) var(--edge);
    border-radius: var(--radius);
    padding: 100px 80px;
}

.panel-light { background: var(--white); color: var(--black); }
.panel-dark  { background: var(--black); color: var(--white); border: 1px solid #1a1a1a; }

.panel-head { max-width: 480px; margin-bottom: 64px; }

.panel-head h2 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.panel-head p {
    font-size: 1.05rem;
    color: var(--grey-700);
    max-width: 420px;
}

/* --- Hero: full-bleed image, content anchored bottom-left --- */
.hero {
    margin: 0 var(--edge) var(--edge) var(--edge);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    min-height: 86vh;
    display: flex;
    align-items: flex-end;
    background: var(--black);
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 30%;
    filter: grayscale(40%) contrast(1.05);
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 62%, rgba(0,0,0,0.92) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 64px 80px 72px 80px;
    max-width: 640px;
    color: var(--white);
}

h1 {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.5;
    margin-bottom: 36px;
    max-width: 420px;
}

.btn-about {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--black);
    border-radius: 50px;
    text-decoration: none;
    color: var(--black);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta .btn-about { color: var(--white); background: var(--black); }
.cta .btn-about:hover { opacity: 0.85; }

.btn-about:hover { background-color: var(--black); color: var(--white); }

.btn-hero {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 50px;
    text-decoration: none;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-hero:hover { background-color: var(--white); color: var(--black); border-color: var(--white); }

/* --- FIFA badge: floats over the hero image, top-right --- */
.badge {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 108px;
}

.badge-inner {
    width: 92px;
    height: 92px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: var(--white);
}

.badge-inner::before {
    content: '';
    position: absolute;
    top: 4px; left: 4px; right: 4px; bottom: 4px;
    border: 1.5px dashed rgba(255,255,255,0.7);
    border-radius: 50%;
}

.badge-top, .badge-bottom { font-size: 0.48rem; font-weight: 700; letter-spacing: 0.05em; }
.badge-center { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin: -2px 0; letter-spacing: -0.02em; }

.badge-member {
    margin-top: 10px;
    border-top: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    padding: 3px 10px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
    white-space: nowrap;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* --- Trust strip --- */
.trust-strip {
    margin: 0 var(--edge) var(--edge) var(--edge);
    padding: 32px 40px;
    text-align: center;
}

.trust-strip-label {
    font-size: 0.8rem;
    color: var(--grey-400);
    margin-bottom: 18px;
}

.trust-strip-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 36px;
}

.trust-strip-row span {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0.9;
}

/* --- Feature list --- */
.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid #e4e4e4;
}

.feature {
    padding: 40px 32px 40px 0;
    border-right: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    position: relative;
}

.feature:nth-child(3n) { border-right: none; padding-right: 0; }

.feature-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    margin-bottom: 20px;
}

.feature h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature p {
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--grey-700);
    max-width: 320px;
}

/* --- Stats --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 24px;
    border-top: 1px solid #2a2a2a;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--accent);
}

.stat-label {
    font-size: 0.92rem;
    color: var(--grey-400);
}

/* --- Steps --- */
.steps { list-style: none; }

.step {
    display: flex;
    gap: 40px;
    padding: 36px 0;
    border-top: 1px solid #e4e4e4;
}

.steps .step:last-child { border-bottom: 1px solid #e4e4e4; }

.step-number {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--grey-400);
    flex-shrink: 0;
    width: 40px;
}

.step-body h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.step-body p {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--grey-700);
    max-width: 480px;
}

/* --- Testimonial --- */
.testimonial {
    text-align: center;
    padding: 120px 80px;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.01em;
    max-width: 780px;
    margin: 0 auto 28px auto;
}

.testimonial-source {
    font-size: 0.9rem;
    color: var(--grey-400);
}

/* --- CTA --- */
.cta {
    text-align: center;
    padding: 110px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta h2 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    max-width: 620px;
    margin-bottom: 18px;
}

.cta p {
    font-size: 1.05rem;
    color: var(--grey-700);
    max-width: 460px;
    margin-bottom: 36px;
}

/* --- Footer --- */
.site-footer {
    margin: 0 var(--edge) var(--edge) var(--edge);
    padding: 64px 60px 32px 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid #2a2a2a;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--grey-400);
    max-width: 260px;
    line-height: 1.5;
}

.footer-col { display: flex; flex-direction: column; gap: 14px; }

.footer-col-title {
    font-size: 0.78rem;
    color: var(--grey-400);
    margin-bottom: 4px;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.92rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col a:hover { opacity: 1; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 28px;
    font-size: 0.8rem;
    color: var(--grey-400);
}

/* --- Entrance animation (hero only, single orchestrated moment) --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; transition: none; }
}

/* =======================================================
   RESPONSIVE
   ======================================================= */

@media (max-width: 1000px) {
    .hero { min-height: 70vh; }
    .hero-content { padding: 48px 48px 56px 48px; max-width: 100%; }

    .panel { padding: 72px 48px; }
    .feature-list { grid-template-columns: 1fr 1fr; }
    .feature:nth-child(2n) { border-right: none; padding-right: 0; }
    .feature:nth-child(3n) { border-right: 1px solid #e4e4e4; padding-right: 32px; }
    .feature:last-child { border-right: none; padding-right: 0; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}

@media (max-width: 780px) {
    .navbar { padding: 24px 24px; }
    .nav-links, .btn-nav { display: none; }
    .nav-toggle { display: flex; }

    h1 { font-size: 3.2rem; }

    .panel-head h2, .cta h2 { font-size: 2.1rem; }
    .panel { padding: 56px 28px; border-radius: 28px; }
    .testimonial { padding: 72px 28px; }
    .testimonial-quote { font-size: 1.4rem; }

    .feature-list { grid-template-columns: 1fr; border-top: none; }
    .feature { border-right: none !important; padding: 28px 0; }

    .steps { }
    .step { flex-direction: column; gap: 12px; }

    .stat-number { font-size: 2.4rem; }

    .site-footer { padding: 48px 24px 24px 24px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
    :root { --edge: 12px; --radius: 24px; }
    .navbar { padding: 20px 16px; }
    h1 { font-size: 2.5rem; }
    .hero { min-height: 78vh; align-items: flex-end; }
    .hero-content { padding: 32px 24px 40px 24px; }
    .btn-hero { width: 100%; text-align: center; }
    .badge { top: 24px; right: 24px; width: 76px; }
    .badge-inner { width: 66px; height: 66px; }
    .badge-top, .badge-bottom { font-size: 0.36rem; }
    .badge-center { font-size: 0.95rem; }
    .badge-member { font-size: 0.5rem; padding: 3px 6px; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .trust-strip-row { gap: 10px 20px; }
}