@import "tailwindcss";

:root {
  --background: #ffffff;
  --foreground: #111827;
  --muted: #5f6b7a;
  --line: #e5e7eb;
  --brand: #0f766e;
  --brand-dark: #134e4a;
  --brand-soft: #e8f5f2;
  --ink: #0b1120;
  --gold: #f5b301;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.notice {
  background: var(--brand-dark);
  color: white;
  font-size: 0.88rem;
  text-align: center;
  padding: 0.5rem 1rem;
}

.nav {
  max-width: 1180px;
  min-height: 68px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-dark);
  color: #ffffff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: #374151;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--brand);
}

.nav-cta,
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0.8rem 1.15rem;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav-cta,
.btn.primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.22);
}

.btn.primary:hover,
.nav-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn.primary.added {
  background: #166534;
}

.btn.dark {
  background: var(--ink);
  color: white;
}

.btn.light {
  background: white;
  color: var(--ink);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero > img {
  object-fit: cover;
  object-position: 22% center;
  height: 100%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 12, 22, 0.78), rgba(5, 12, 22, 0.42), rgba(5, 12, 22, 0.16));
}

.hero-content {
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 5.5rem 1.25rem 6.5rem;
  color: white;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 640px;
  margin: 1.25rem 0 0;
  color: #e5e7eb;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.rating-row,
.hero-actions,
.button-row,
.price-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.rating-row {
  margin-top: 1.25rem;
}

.hero-actions {
  margin-top: 2rem;
}

.stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0;
}

.stars.small {
  font-size: 0.95rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.metrics div {
  background: var(--brand-soft);
  padding: 1.25rem;
  text-align: center;
}

.metrics strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.8rem;
}

.metrics span,
.product-copy p,
.section-intro p,
.ride-grid p,
.guarantee-grid p,
.review-grid p,
.about-band p,
.blog-card p,
.legal-page p,
.article-page p,
.footer p,
.faq-list p {
  color: var(--muted);
  line-height: 1.65;
}

.image-strip,
.ride-section,
.spec-section,
.reviews,
.blog-preview,
.legal-page,
.article-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.75rem 1.25rem;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.image-strip img,
.ride-grid img,
.blog-card img,
.product-media,
.spec-layout > img,
.about-band img,
.product-gallery img {
  border-radius: 8px;
}

.image-strip img {
  width: 100%;
  aspect-ratio: 700 / 620;
  object-fit: cover;
}

.product-feature {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.75rem 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.product-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f3f4f6;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.product-media img {
  object-fit: cover;
  height: 100%;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.product-copy h2,
.section-intro h2,
.dark-guarantee h2,
.about-band h2,
.newsletter h2,
.legal-page h1,
.article-page h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
}

.price-line {
  margin: 1.35rem 0;
}

.price-line strong {
  color: var(--brand);
  font-size: 2rem;
}

.price-line span {
  color: #16a34a;
  font-weight: 700;
}

.check-list {
  margin: 1.25rem 0 1.6rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: #1f2937;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.ride-grid,
.guarantee-grid,
.review-grid,
.blog-grid,
.product-gallery {
  display: grid;
  gap: 1.25rem;
}

.ride-grid {
  grid-template-columns: repeat(3, 1fr);
}

.ride-grid article,
.review-grid article,
.blog-card,
.plain-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.ride-grid article {
  padding-bottom: 1.1rem;
}

.ride-grid img {
  width: 100%;
  aspect-ratio: 720 / 520;
  object-fit: cover;
}

.ride-grid h3,
.blog-card h3 {
  margin: 1rem 1rem 0.35rem;
  color: var(--ink);
  font-size: 1.2rem;
}

.ride-grid p,
.blog-card p {
  margin: 0 1rem 1rem;
}

.dark-guarantee {
  background: var(--ink);
  color: white;
  padding: 4.75rem max(1.25rem, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.4rem;
  align-items: start;
}

.dark-guarantee h2,
.dark-guarantee .eyebrow {
  color: white;
}

.guarantee-grid {
  grid-template-columns: repeat(2, 1fr);
}

.guarantee-grid article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
}

.guarantee-grid h3 {
  margin: 0 0 0.4rem;
}

.guarantee-grid p {
  margin: 0;
  color: #cbd5e1;
}

.spec-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1fr;
  gap: 2rem;
  align-items: start;
}

.spec-layout dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.spec-layout div {
  background: white;
  padding: 1rem;
}

.spec-layout dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.spec-layout dd {
  margin: 0.35rem 0 0;
  color: var(--ink);
  font-weight: 750;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-grid article {
  padding: 1.25rem;
}

.review-grid p {
  margin: 0.7rem 0 1rem;
}

.review-grid strong,
.review-grid span {
  display: block;
}

.review-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.about-band {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 2.4rem;
  align-items: center;
  padding: 4.75rem max(1.25rem, calc((100vw - 1180px) / 2));
  background: var(--brand-soft);
}

.faq-section {
  max-width: 880px;
  margin: 0 auto;
  padding: 4.75rem 1.25rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 750;
}

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.spec-layout > img,
.about-band img,
.product-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-gallery img,
.spec-layout > .product-page-spec-image {
  object-fit: contain;
  background: #f8fafc;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.blog-card span {
  display: inline-block;
  margin: 0 1rem 1rem;
  color: var(--brand);
  font-weight: 750;
}

.newsletter {
  background: var(--brand-soft);
  padding: 3.5rem 1.25rem;
  text-align: center;
}

.newsletter p {
  color: var(--muted);
}

.subscribe-form {
  max-width: 560px;
  margin: 1.25rem auto 0;
  display: flex;
  gap: 0.7rem;
}

.subscribe-form input {
  min-height: 48px;
  flex: 1;
  border: 1px solid #cfd8dc;
  border-radius: 8px;
  padding: 0 1rem;
  font: inherit;
}

.subscribe-form button {
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: white;
  padding: 0 1.15rem;
  font: inherit;
  font-weight: 750;
}

.footer {
  border-top: 1px solid var(--line);
  background: #f9fafb;
  padding: 3rem 1.25rem 1.5rem;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  gap: 2rem;
}

.footer h3 {
  margin: 0 0 0.8rem;
}

.footer a {
  display: block;
  margin: 0.4rem 0;
  color: #4b5563;
}

.copyright {
  max-width: 1180px;
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.product-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 2.5rem;
}

.product-gallery {
  grid-template-columns: 1fr 1fr;
}

.product-gallery img:first-child {
  grid-column: span 2;
}

.product-panel {
  align-self: start;
  position: sticky;
  top: 112px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  background: white;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.discount {
  display: inline-flex;
  margin-left: 0.65rem;
  border-radius: 999px;
  background: #fee2e2;
  color: #991b1b;
  padding: 0.28rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 850;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.compare-table th,
.compare-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.compare-table th {
  background: var(--brand-soft);
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.legal-page,
.article-page {
  max-width: 880px;
}

.legal-page h1,
.article-page h1 {
  margin-bottom: 1rem;
}

.legal-page h2,
.article-page h2 {
  margin-top: 2rem;
  color: var(--ink);
}

.article-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.plain-card {
  padding: 1.25rem;
}

.plain-card h2,
.plain-card h3 {
  margin: 0 0 0.45rem;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  .nav-cta {
    display: none;
  }

  .metrics,
  .image-strip,
  .ride-grid,
  .review-grid,
  .blog-grid,
  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-feature,
  .dark-guarantee,
  .spec-layout,
  .about-band,
  .footer-grid,
  .product-hero {
    grid-template-columns: 1fr;
  }

  .product-panel {
    position: static;
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding-top: 4rem;
  }

  .metrics,
  .image-strip,
  .ride-grid,
  .review-grid,
  .blog-grid,
  .guarantee-grid,
  .spec-layout dl,
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery img:first-child {
    grid-column: span 1;
  }

  .product-hero,
  .product-panel,
  .product-gallery {
    min-width: 0;
  }

  .compare-table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .subscribe-form,
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }
}
