:root {
  --orange: #ff5900;
  --orange-light: #ff6a1a;
  --orange-soft: #fff2ea;
  --orange-soft-2: #fff7f2;
  --orange-dark: #d94e00;
  --text: #111111;
  --muted: #5f5f5f;
  --background: #ffffff;
  --border: #ffdccc;
  --surface: #fff5ef;
  --radius: 18px;
  --max-width: 1120px;
  --shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.03rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.05em;
  margin-bottom: 24px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.22rem;
  margin: 24px 0 12px;
}

ul,
ol {
  padding-left: 22px;
  margin: 18px 0 0;
}

li {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 1rem;
}

main {
  position: relative;
  z-index: 1;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

/* ─── Parallax background ────────────────────────────────────────────────── */
.layer1 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    transform-style: preserve-3d;
}

.layer1::before,
.layer1::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.layer1::before {
    background-image: url('/assets/parallax/background.webp');
    background-position: top center;
    transform: translateZ(-2px) scale(1);
}

.layer1::after {
    background-image: url('/assets/parallax/bikers.png');
    background-position: bottom center;
    transform: translateZ(-0.5px) scale(1);
}

header {
    padding: 1.5rem 0;
}

.header-content {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
}

header img {
  height: 50px;
  margin-right: 0.8rem;
  border-radius: 15px;
}

header .title {
  margin: 0;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-link {
  color: #ffffff;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}

.nav-link.cta-link {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
  font-weight: 700;
}

.nav-link.cta-link:hover {
  background: #ff6a1a;
  border-color: #ff6a1a;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    padding: 0;
}

/* Legibility scrim — base coat + directional gradients; never fades to 0 */
.hero__scrim {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(14,13,12,0.38) 0%, rgba(14,13,12,0)    65%),
        linear-gradient(0deg,   rgba(14,13,12,0.38) 0%, rgba(14,13,12,0)    32%),
        linear-gradient(180deg, rgba(14,13,12,0.28) 0%, rgba(14,13,12,0)    20%),
        linear-gradient(rgba(14,13,12,0.50), rgba(14,13,12,0.50));
}

/* Faint warm brand wash from bottom-left */
.hero__scrim::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 0% 100%, rgba(255,89,0,0.18) 0%, transparent 55%);
    mix-blend-mode: screen;
}

/* Cinematic vignette + film grain */
.hero__fx {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(120% 100% at 50% 42%, transparent 48%, rgba(0,0,0,0.45) 100%);
}

.hero__fx::after {
    content: '';
    position: absolute;
    inset: -50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.05;
    mix-blend-mode: overlay;
    animation: grain 1.2s steps(4) infinite;
}

@keyframes grain {
    0%,100% { transform: translate(0, 0); }
    25%      { transform: translate(-3%, 2%); }
    50%      { transform: translate(2%, -3%); }
    75%      { transform: translate(-2%, -1%); }
}

@media (prefers-reduced-motion: reduce) {
    .hero__fx::after { animation: none; }
}


.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.hero-text {
  max-width: 640px;
}

.hero-description {
  max-width: 680px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: balance;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 30px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-button:hover {
  transform: translateY(-3px) scale(1.02);
}

.store-button img {
  display: block;
  height: 50px;
  width: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(255, 89, 0, 0.32);
}

.button-primary:hover {
  background: #ff6a1a;
}

.button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}

.hero-card {
  background: rgba(255, 247, 242, 0.96);
  border: 1px solid rgba(255, 220, 204, 0.9);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  color: var(--text);
}

.hero-card h2 {
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: steps;
}

.step-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--text);
  counter-increment: steps;
}

.step-list li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--orange);
  font-weight: 800;
}

.step-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.step-list span {
  display: block;
  color: var(--muted);
  font-size: 0.96rem;
}

section {
  padding: 72px 0;
}

.section-soft {
  background: linear-gradient(180deg, #fffaf7 0%, #fff3eb 100%);
}

.content-narrow {
  max-width: 860px;
}

.content-narrow h2,
.content-narrow h3 {
  text-wrap: balance;
}

.seo-content,
.seo-content-bis,
.feature,
.audience-card {
  transition: transform 0.3s ease, opacity 0.6s ease-out;
  opacity: 0;
  transform: translateY(40px);
}

.seo-content.visible,
.seo-content-bis.visible,
.feature.visible,
.audience-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-panel {
  margin-top: 34px;
  padding: 30px;
  border-radius: 24px;
  background: var(--orange-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.intro-panel p:last-child {
  margin-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.audience-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.3rem;
    box-shadow: 0 8px 20px rgba(17, 17, 17, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, opacity 0.6s ease-out;
}

.audience-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        rgba(255, 255, 255, 0)    30%,
        rgba(255, 255, 255, 0.22) 50%,
        rgba(255, 255, 255, 0)    70%
    );
    transform: translateX(-140%) skewX(-18deg);
    transition: transform 0.65s ease;
    pointer-events: none;
    z-index: 1;
}

.audience-card:hover {
    transform: translateY(-7px) scale(1.03);
    backdrop-filter: blur(22px) saturate(1.9);
    border-color: rgba(255, 89, 0, 0.5);
    box-shadow:
        0 0 0 1px rgba(255, 89, 0, 0.2),
        0 8px 32px rgba(255, 89, 0, 0.25),
        0 24px 60px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.audience-card:hover::before {
    transform: translateX(140%) skewX(-18deg);
}

.audience-card strong {
  font-size: 1.35rem;
  color: var(--orange);
}

.audience-card span {
  color: white;
  font-size: 0.95rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.05);
}

.card h3 {
  margin-top: 0;
}

.feature {
  background: #ffffff;
}

.highlight-box {
  margin-top: 34px;
  padding: 30px;
  border-radius: var(--radius);
  background:var(--orange-light);
  box-shadow: 0 16px 34px rgba(38, 20, 5, 0.24);
}

.highlight-box h2,
.highlight-box h3,
.highlight-box p,
.highlight-box li {
  color: #ffffff;
}

.highlight-box p,
.highlight-box li {
  opacity: 0.82;
}

.cta-box {
  padding: 42px;
  border-radius: 28px;
  background: var(--orange-light);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 36px rgba(38, 20, 5, 0.24);
}

.cta-box h2 {
  color: #ffffff;
}

.cta-box p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.78);
}

.cta-box .button-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-box .button-primary {
  box-shadow: none;
}

.cta-actions {
  justify-content: center;
}

#store-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-top: 5rem;
}

#store-buttons a img {
  height: 40px;
  margin: 0.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 24px;
}

.footer-links a {
  color: var(--orange);
  font-weight: 700;
}

.inline-link {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 89, 0, 0.35);
  text-underline-offset: 0.18em;
}

.inline-link:hover {
  text-decoration-color: var(--orange);
}

.divider {
  width: min(100% - 32px, var(--max-width));
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 89, 0, 0.28) 20%, rgba(255, 89, 0, 0.28) 80%, transparent 100%);
}

@media (max-width: 860px) {
    header {
        padding: 1rem;
    }

    .header-content {
        flex-direction: column;
    }

    .header-nav {
        justify-content: center;
    }

    .hero {
        padding: 1.5rem 0 4.5rem;
    }

    .hero-grid,
    .grid-2,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
    }

    .layer1::before {
        transform: translateZ(0px) scale(1);
    }

    .layer1::after {
        transform: translateZ(0) scale(1);
    }

    .hero-actions,
    .cta-actions,
    .store-badges {
        justify-content: center;
    }

    section {
        padding: 54px 0;
    }

    .cta-box {
        padding: 30px 22px;
    }

    #store-buttons {
        margin-top: 0rem;
        justify-content: center;
    }

    .hero-grid {
        justify-items: center;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .layer1::before {
        transform: translateZ(0px) scale(1);
    }


    .layer1::after {
        background-size: 450%;  /* Make image 50% larger, showing even less */
        background-position-y : 10px;
    }        
        
}
