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

:root {
  --sky: #3ca4ea;
  --sky-deep: #1a78c4;
  --sky-pale: #d8f0ff;
  --sky-wash: #eef8ff;
  --yellow: #ffe14a;
  --yellow-hot: #ffd000;
  --ink: #111111;
  --ink-soft: #3a4450;
  --road: #4d535b;
  --white: #f7fbff;
  --card: rgba(255, 255, 255, 0.72);
  --font-display: "Bangers", "Impact", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sky-wash);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(238, 248, 255, 0.78);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 2px var(--yellow);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.brand-name span {
  margin-left: 0.45rem;
  color: var(--sky-deep);
  font-size: 0.95rem;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.6rem;
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: scale(1.04);
}

.btn-primary {
  background: var(--ink);
  color: var(--yellow);
  box-shadow: 0 14px 28px -12px rgba(17, 17, 17, 0.55);
}

.btn-ghost {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: var(--yellow);
}

.btn svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% center;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 28, 44, 0.72) 0%, rgba(12, 28, 44, 0.28) 42%, transparent 70%),
    linear-gradient(180deg, rgba(12, 28, 44, 0.18) 0%, transparent 28%, rgba(12, 28, 44, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
  padding: 7.5rem 1.25rem 3.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 225, 74, 0.45);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.45);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 14vw, 9.5rem);
  line-height: 0.82;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 4px 5px 0 #111, 0 18px 36px rgba(0, 0, 0, 0.35);
}

h1 em {
  display: block;
  font-style: normal;
  color: var(--yellow);
}

.hero-lead {
  max-width: 34rem;
  margin-top: 1.25rem;
  color: rgba(247, 251, 255, 0.88);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-actions .btn-primary {
  background: var(--yellow);
  color: var(--ink);
}

.ca-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 36rem;
  margin-top: 1.15rem;
  padding: 0.55rem 0.7rem;
  border: 2px solid rgba(255, 225, 74, 0.45);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.5);
  color: #fff;
  text-align: left;
}

.ca-btn:hover {
  border-color: var(--yellow);
  background: rgba(17, 17, 17, 0.72);
}

.ca-label {
  flex-shrink: 0;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.ca-value {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.78rem;
  color: rgba(247, 251, 255, 0.82);
}

.ca-copy {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--yellow);
}

.hero-logo {
  position: absolute;
  right: 6%;
  bottom: 18%;
  z-index: 1;
  width: min(28vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #111;
  box-shadow:
    0 0 0 6px var(--yellow),
    0 28px 50px rgba(0, 0, 0, 0.4);
  animation: float-y 6s ease-in-out infinite;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marquee-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 3px solid #111;
  background: var(--yellow);
  padding: 0.7rem 0;
}

.marquee {
  display: flex;
  width: max-content;
  gap: 2.2rem;
  animation: marquee-x 22s linear infinite;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
  white-space: nowrap;
}

.dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #111;
  display: inline-block;
  margin-left: 2.2rem;
  vertical-align: middle;
}

.section {
  position: relative;
  padding: 5.5rem 1.25rem;
}

.section-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.about-grid,
.ride-grid {
  display: grid;
  gap: 3rem;
}

.about-art {
  position: relative;
}

.about-art::after {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 164, 234, 0.45), transparent 68%);
  filter: blur(24px);
}

.about-art img {
  width: 100%;
  border-radius: 1.6rem;
  border: 3px solid #111;
  object-fit: cover;
  aspect-ratio: 16 / 7;
  box-shadow: 12px 14px 0 #111;
  animation: float-y 7s ease-in-out infinite;
}

.kicker {
  margin-bottom: 0.7rem;
  color: var(--sky-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h2 span {
  color: var(--sky-deep);
}

.muted {
  max-width: 36rem;
  margin-top: 1.1rem;
  color: var(--ink-soft);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
  list-style: none;
}

.chips li {
  padding: 0.35rem 0.8rem;
  border: 2px solid #111;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ride {
  background:
    radial-gradient(90% 60% at 50% 0%, #d8f0ff 0%, transparent 62%),
    var(--sky-wash);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.ride-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 1.5rem;
  border: 3px solid #111;
  background: #fff;
  transition: transform 0.3s ease;
}

.gallery figure:nth-child(1) { transform: rotate(-1.6deg); }
.gallery figure:nth-child(2) { transform: rotate(1.4deg); }
.gallery figure:nth-child(3) { transform: rotate(1.8deg); }
.gallery figure:nth-child(4) { transform: rotate(-1.2deg); }

.gallery figure:hover {
  z-index: 2;
  transform: rotate(0) scale(1.04);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery figure:hover img {
  transform: scale(1.06);
}

.gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.4rem 1rem 0.9rem;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.88), transparent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 2.4rem 1.4rem;
  text-align: center;
  border: 3px solid #111;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 8px 10px 0 #111;
}

.cta-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sky-deep);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding: 3rem 1.25rem;
  border-top: 3px solid #111;
  background: var(--ink);
  color: var(--sky-pale);
  text-align: center;
}

.site-footer img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--yellow);
}

.handle {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}

.disclaimer {
  max-width: 32rem;
  font-size: 0.78rem;
  color: rgba(216, 240, 255, 0.7);
}

.copy {
  font-family: var(--font-display);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(255, 225, 74, 0.7);
}

.paw {
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  opacity: 0.16;
  pointer-events: none;
}

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

@keyframes marquee-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (min-width: 48rem) {
  .topbar { padding: 0.9rem 1.6rem; }
  .nav { display: flex; }
  .hero-banner { object-position: center; }
  .hero-logo { display: none; }
  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
  .ride-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .gallery { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo,
  .about-art img,
  .marquee {
    animation: none;
  }
}
