:root {
  --bg: #f6f6f2;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: #ffffff;
  --text: #18231d;
  --muted: #69746d;
  --line: rgba(24, 35, 29, 0.08);
  --dark: #183223;
  --soft: #f3efe8;
  --shadow: 0 30px 80px rgba(24, 35, 29, 0.08);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(228, 236, 229, 0.9), transparent 20%),
    radial-gradient(circle at top right, rgba(244, 232, 217, 0.9), transparent 18%),
    linear-gradient(180deg, #fbfbf8 0%, var(--bg) 100%);
}

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

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

.page {
  width: min(1540px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 52px;
}

.topbar,
.hero,
.products,
.mini-band,
.bottom-cta {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border-radius: var(--radius-md);
}

.brand {
  width: min(220px, 44vw);
}

.hero,
.products,
.mini-band,
.bottom-cta {
  margin-top: 28px;
  border-radius: var(--radius-xl);
}

.hero {
  min-height: 78vh;
  padding: 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1,
.bottom-cta h2 {
  margin: 0;
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.hero h1 {
  max-width: 8ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.subcopy {
  margin: 18px 0 0;
  max-width: 30ch;
  color: var(--muted);
  font-size: 1rem;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.pill:hover,
.pill:focus-visible {
  transform: translateY(-2px);
}

.pill-dark {
  background: var(--dark);
  color: #fcfdf9;
  box-shadow: 0 16px 36px rgba(24, 50, 35, 0.16);
}

.pill-soft {
  background: var(--panel-strong);
  color: var(--dark);
  border: 1px solid rgba(24, 50, 35, 0.08);
}

.hero-art {
  position: relative;
  min-height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(239, 245, 240, 0.92)),
    linear-gradient(135deg, #f7f5ef, #eef3ed);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.hero-orb-a {
  width: 280px;
  height: 280px;
  top: 10%;
  right: 10%;
  background: rgba(223, 234, 226, 0.9);
}

.hero-orb-b {
  width: 220px;
  height: 220px;
  bottom: 8%;
  left: 8%;
  background: rgba(244, 232, 217, 0.95);
}

.hero-logo {
  position: absolute;
  inset: 12%;
  display: grid;
  place-items: center;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 35, 29, 0.06);
}

.products {
  padding: 34px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: var(--muted);
  font-weight: 600;
}

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

.image-wrap {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
  border: 1px solid rgba(24, 35, 29, 0.06);
}

.image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 240ms ease;
}

.image-wrap:hover img,
.image-wrap:focus-visible img {
  transform: scale(1.02);
}

.card-cta {
  width: 100%;
  margin-top: 14px;
}

.mini-band {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.signal {
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(24, 35, 29, 0.06);
  font-weight: 600;
  text-align: center;
}

.bottom-cta {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bottom-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  max-width: 10ch;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

@media (max-width: 760px) {
  .page {
    width: min(100% - 24px, 1540px);
  }

  .topbar,
  .section-head,
  .bottom-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .products,
  .mini-band,
  .bottom-cta {
    padding: 24px;
  }

  .product-grid,
  .mini-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero h1,
  .bottom-cta h2 {
    max-width: 100%;
  }

  .hero-actions,
  .pill,
  .card-cta {
    width: 100%;
  }
}
