:root {
  --bg: #0c0b0a;
  --bg-soft: #13110f;
  --bg-elevated: #181512;
  --panel: rgba(24, 21, 18, 0.9);
  --panel-strong: rgba(18, 15, 13, 0.96);
  --text: #f5f1ea;
  --muted: #c8beaf;
  --line: rgba(205, 164, 103, 0.22);
  --line-strong: rgba(205, 164, 103, 0.42);
  --accent: #d2a15b;
  --accent-strong: #f0bf75;
  --off-white: #f1ebe1;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --shadow-soft-glow: 0 18px 40px rgba(191, 140, 71, 0.12);
  --radius: 20px;
  --container: 1500px;
  --section-space: clamp(5rem, 8vw, 7rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(210, 161, 91, 0.1), transparent 28%),
    linear-gradient(180deg, #15110e 0%, #0d0b0a 34%, #090807 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

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

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 92%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(7, 6, 6, 0.72);
  border-bottom: 1px solid rgba(205, 164, 103, 0.14);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.brand img,
.footer-logo {
  width: auto;
  height: 52px;
}

.header-cta,
.form-button {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #a77034 100%);
  color: #120e0a;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 24px rgba(133, 84, 24, 0.24);
  transition: all 0.25s ease;
}

.header-cta:hover,
.form-button:hover {
  transform: translateY(-2px);
  filter: brightness(0.98);
  box-shadow: 0 18px 30px rgba(133, 84, 24, 0.28);
}

.header-cta {
  padding: 0.8rem 1.15rem;
}

.hero {
  padding: 5rem 0 2.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: 2.4rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: -48px;
  left: -24px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 161, 91, 0.18), transparent 68%);
  filter: blur(8px);
  z-index: -1;
}

.hero-copy > * + * {
  margin-top: 1.65rem;
}

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-glow {
  position: absolute;
  inset: 8% 12% 14% 8%;
  border-radius: 36px;
  background: radial-gradient(circle, rgba(210, 161, 91, 0.22), rgba(210, 161, 91, 0) 72%);
  filter: blur(20px);
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Cinzel", serif;
  line-height: 0.91;
  letter-spacing: 0.01em;
}

h1 {
  max-width: 520px;
  font-size: clamp(1.95rem, 3vw, 3.05rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-text,
.section-heading p,
.card-copy p,
.lifestyle-copy p,
.microcopy,
.supporter-note,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 520px;
  margin: 0;
  font-size: 1.05rem;
}

.supporter-note {
  max-width: 520px;
  margin: -0.15rem 0 0;
  color: #e7cfaa;
  font-size: 0.98rem;
  font-weight: 600;
}

.hero-frame,
.media-wrap,
.signup-panel,
.benefit-card,
.product-card,
.detail-card,
.cta-shell,
.video-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(28, 24, 20, 0.96), rgba(14, 12, 10, 0.98));
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
}

.benefit-card:hover,
.product-card:hover,
.detail-card:hover,
.video-card:hover,
.hero-frame:hover,
.cta-shell:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.hero-frame {
  overflow: hidden;
  width: 100%;
  max-width: 780px;
}

.hero-frame::after,
.media-wrap::after,
.signup-panel::after,
.benefit-card::after,
.product-card::after,
.detail-card::after,
.cta-shell::after,
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-frame--feature img {
  width: 100%;
  height: clamp(520px, 60vw, 730px);
  object-fit: cover;
  object-position: 36% center;
  transform: scale(1.01);
  transition: all 0.25s ease;
}

.hero-frame--feature:hover img,
.media-wrap:hover img {
  transform: scale(1.03);
}

.signup-panel {
  max-width: 38rem;
  margin-top: 0.45rem;
  padding: 1.55rem;
  background:
    radial-gradient(circle at 18% 12%, rgba(210, 161, 91, 0.16), transparent 44%),
    radial-gradient(circle at 34% 38%, rgba(188, 118, 44, 0.1), transparent 54%),
    linear-gradient(180deg, rgba(23, 20, 17, 0.96), rgba(13, 11, 10, 0.98));
  box-shadow: var(--shadow), var(--shadow-soft-glow);
}

.status-message {
  display: none;
  margin-bottom: 0.9rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  font-size: 0.96rem;
}

.status-message.is-visible {
  display: block;
}

.status-message.is-success {
  background: rgba(31, 92, 54, 0.34);
  border: 1px solid rgba(102, 196, 138, 0.4);
  color: #d4f3dd;
}

.status-message.is-error {
  background: rgba(117, 38, 38, 0.34);
  border: 1px solid rgba(217, 109, 109, 0.34);
  color: #ffd6d1;
}

.signup-form {
  margin: 0;
}

.form-row {
  display: flex;
  gap: 0.8rem;
  align-items: stretch;
}

.form-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 68px;
  padding: 0 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 -10px 22px rgba(0, 0, 0, 0.14), 0 10px 24px rgba(0, 0, 0, 0.08);
  color: var(--text);
  font: inherit;
  transition: all 0.25s ease;
}

.form-input::placeholder {
  color: rgba(245, 241, 234, 0.78);
}

.form-input:focus {
  outline: none;
  border-color: rgba(240, 191, 117, 0.65);
  box-shadow: 0 0 0 4px rgba(210, 161, 91, 0.12);
}

.form-input.is-invalid {
  border-color: rgba(217, 109, 109, 0.7);
  box-shadow: 0 0 0 4px rgba(217, 109, 109, 0.12);
}

.form-button {
  flex: 0 0 auto;
  padding: 0 1.95rem;
  min-height: 68px;
  border-width: 0;
  cursor: pointer;
  font: inherit;
}

.signup-panel .form-button:hover {
  transform: translateY(-3px);
  filter: brightness(0.98);
  box-shadow: 0 22px 36px rgba(133, 84, 24, 0.34), 0 0 24px rgba(210, 161, 91, 0.12);
}

.microcopy,
.field-error {
  margin: 0.75rem 0 0;
  font-size: 0.94rem;
}

.signup-benefits {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.signup-benefits li {
  position: relative;
  padding-left: 1.35rem;
  color: #efe3d0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.signup-benefits li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), #ae7335);
  box-shadow: 0 0 12px rgba(210, 161, 91, 0.22);
}

.field-error {
  color: #ffad9f;
  min-height: 1.5em;
}

.section {
  padding: var(--section-space) 0;
}

.section-video {
  padding-top: 2rem;
  padding-bottom: 7rem;
}

.video-shell {
  display: grid;
  gap: 1rem;
}

.video-card {
  width: min(100%, 1100px);
  margin: 0 auto;
  overflow: hidden;
  padding: 0.45rem;
  border-color: rgba(205, 164, 103, 0.28);
}

.demo-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  background: #000;
  transition: transform 0.25s ease;
}

.video-card:hover .demo-video {
  transform: scale(1.01);
}

.section-heading {
  max-width: 50rem;
  margin-bottom: 2.4rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.benefit-grid,
.product-grid,
.detail-grid,
.lifestyle-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.lifestyle-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

.benefit-card,
.product-card,
.detail-card {
  padding: 1.55rem;
}

.benefit-index {
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: rgba(240, 191, 117, 0.42);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.benefit-card:hover {
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.38), 0 0 24px rgba(210, 161, 91, 0.08);
}

.media-wrap {
  overflow: hidden;
  background: var(--bg-soft);
}

.media-wrap img {
  width: 100%;
  object-fit: cover;
  transition: all 0.25s ease;
}

.media-wrap--product {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 272px;
  padding: 1.15rem;
  background: linear-gradient(180deg, #f4eee4, #e7dccb);
  box-shadow: inset 0 14px 20px rgba(255, 255, 255, 0.2), inset 0 -20px 30px rgba(0, 0, 0, 0.1);
}

.media-wrap--product img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  object-position: center center;
  filter: brightness(0.84) saturate(0.92);
}

.product-card:hover .media-wrap--product img {
  transform: scale(1.04);
}

.media-wrap--detail img {
  aspect-ratio: 1 / 1;
  transform: scale(1.08);
}

.detail-card:hover .media-wrap--detail img {
  transform: scale(1.12);
}

.media-wrap--wide img {
  aspect-ratio: 16 / 9;
}

.media-wrap--split img {
  aspect-ratio: 5 / 4;
}

.card-copy {
  padding-top: 1.1rem;
}

.lifestyle-copy {
  max-width: 600px;
}

.lifestyle-stack {
  display: grid;
  gap: 1.35rem;
  align-items: start;
}

.cta-shell {
  padding: 3.5rem 2.2rem;
  background:
    radial-gradient(circle at 50% 16%, rgba(210, 161, 91, 0.16), transparent 38%),
    radial-gradient(circle at 50% 45%, rgba(188, 118, 44, 0.08), transparent 52%),
    linear-gradient(180deg, rgba(28, 24, 20, 0.96), rgba(14, 12, 10, 0.98));
}

.signup-panel--bottom {
  max-width: 780px;
  margin: 0 auto;
}

.section-final-cta .section-heading h2 {
  font-size: clamp(2.35rem, 3.4vw, 3.65rem);
}

.section-final-cta .form-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(133, 84, 24, 0.38), 0 0 28px rgba(210, 161, 91, 0.16);
}

.site-footer {
  padding: 1rem 0 2rem;
}

.site-footer p {
  margin: 0;
}

.hp,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

  .hero-media {
    order: 2;
  }

  .hero-copy {
    max-width: 42rem;
  }

  .hero-frame--feature img {
    height: 560px;
  }
}

@media (max-width: 980px) {
  .benefit-grid,
  .product-grid,
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 2.9rem 0 1.5rem;
  }

  .header-inner,
  .footer-inner,
  .form-row,
  .benefit-grid,
  .product-grid,
  .detail-grid,
  .lifestyle-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .brand img,
  .footer-logo {
    height: 48px;
  }

  .header-cta,
  .form-button,
  .form-input {
    width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.8rem, 8.8vw, 2.3rem);
    line-height: 0.95;
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .supporter-note {
    font-size: 0.94rem;
  }

  .hero-frame--feature img {
    height: 360px;
    object-position: center center;
  }

  .signup-panel {
    padding: 1.25rem;
  }

  .signup-panel,
  .cta-shell,
  .benefit-card,
  .product-card,
  .detail-card,
  .video-card {
    border-radius: 24px;
  }

  .video-card {
    width: 100%;
  }

  .section {
    padding: 3.2rem 0;
  }
}
