:root {
  --bg: #070707;
  --bg-soft: #111111;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: #f6f1e9;
  --muted: rgba(246, 241, 233, 0.72);
  --accent: #ffb649;
  --accent-strong: #ff8a1d;
  --accent-soft: rgba(255, 182, 73, 0.18);
  --glow: rgba(255, 171, 66, 0.32);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 140, 0, 0.18), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(255, 214, 153, 0.14), transparent 25%),
    linear-gradient(180deg, #0e0c0b 0%, #070707 48%, #090909 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
  opacity: 0.7;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.ambient,
.grid-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}

.ambient-one {
  top: 3rem;
  right: -4rem;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 165, 0, 0.22);
}

.ambient-two {
  bottom: 15%;
  left: -6rem;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 124, 16, 0.14);
}

.grid-glow {
  inset: 25% auto auto 15%;
  width: 24rem;
  height: 24rem;
  background: rgba(255, 205, 138, 0.09);
}

.topbar {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 1rem auto 0;
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 1rem;
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

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

.brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(255, 188, 94, 0.95), rgba(255, 135, 29, 0.9));
  color: #241100;
  box-shadow: 0 8px 24px rgba(255, 144, 0, 0.35);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-copy strong {
  font-family: "Outfit", sans-serif;
  font-size: 0.98rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.92rem;
}

main {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 2.4rem 0 4rem;
}

.hero,
.products,
.why,
.contact {
  position: relative;
  padding: 2rem 0;
}

.hero {
  display: grid;
  gap: 1.6rem;
  align-items: center;
  padding-top: 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 184, 90, 0.2);
  background: rgba(255, 176, 73, 0.08);
  color: #ffd59a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 11vw, 5.8rem);
  max-width: 11ch;
}

.hero-copy p,
.section-heading p,
.cta-panel p,
.product-card p,
.why-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p {
  margin: 1.25rem 0 0;
  max-width: 39rem;
  font-size: 1rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.hero-actions .button,
.contact-actions .button {
  width: 100%;
}

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

.button-primary {
  color: #201000;
  background: linear-gradient(135deg, #ffc66c 0%, #ff8b1f 100%);
  box-shadow: 0 18px 36px rgba(255, 145, 0, 0.24);
}

.button-secondary {
  border: 1px solid rgba(255, 196, 121, 0.25);
  background: rgba(255, 186, 86, 0.12);
  color: #ffe4ba;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button.stretch {
  width: 100%;
}

.hero-stats,
.contact-details {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.glass-pill,
.glass-panel,
.feature-tile {
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.glass-pill {
  padding: 0.95rem 1rem;
  border-radius: 20px;
}

.glass-pill strong,
.detail strong {
  display: block;
  margin-bottom: 0.15rem;
}

.glass-pill span,
.detail span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  min-height: 22rem;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
  pointer-events: none;
}

.showcase-head {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.86rem;
  color: #ffd8a3;
}

.signal {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #ffb649;
  box-shadow: 0 0 16px rgba(255, 182, 73, 0.9);
}

.showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.feature-tile {
  min-height: 9.5rem;
  padding: 1rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 201, 122, 0.12), transparent 32%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
}

.feature-tile h3,
.product-card h3,
.why-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
}

.feature-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.float-a,
.float-b,
.float-c,
.float-d {
  animation: floatCard 7s ease-in-out infinite;
}

.float-b {
  animation-delay: -1.4s;
}

.float-c {
  animation-delay: -2.6s;
}

.float-d {
  animation-delay: -3.5s;
}

.section-heading {
  max-width: 42rem;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2.2rem, 7vw, 4rem);
}

.section-heading p {
  margin-top: 1rem;
}

.product-grid,
.why-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.product-card,
.why-card,
.cta-panel {
  border-radius: var(--radius-lg);
}

.product-card,
.why-card {
  padding: 1.35rem;
}

.product-topline {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.badge {
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffd79f;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dotline {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 182, 73, 0.4), transparent);
}

.feature-list {
  margin: 1.2rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd37f, #ff8a1d);
  box-shadow: 0 0 12px rgba(255, 153, 0, 0.4);
}

.why-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.cta-panel {
  display: grid;
  gap: 1.4rem;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(255, 174, 66, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
}

.detail {
  min-width: 0;
}

.detail strong {
  font-size: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (min-width: 720px) {
  .nav {
    display: inline-flex;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: auto;
  }

  .hero-stats,
  .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .cta-panel {
    padding: 2rem;
  }
}

@media (min-width: 980px) {
  main {
    padding-top: 3rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
    gap: 2rem;
    min-height: calc(100vh - 10rem);
  }

  .hero-copy p {
    font-size: 1.06rem;
  }

  .showcase-card {
    padding: 1.5rem;
  }

  .why-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .why-card {
    min-height: 13rem;
  }

  .cta-panel {
    grid-template-columns: 1.15fr auto;
    align-items: center;
    padding: 2.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal,
  .float-a,
  .float-b,
  .float-c,
  .float-d {
    animation: none;
    transition: none;
  }
}
