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

:root {
  --bg: #08090d;
  --bg-soft: #101218;
  --card: #151821;
  --card-light: #1b1e27;
  --text: #ffffff;
  --muted: #a8adb9;
  --gold: #d7a84f;
  --gold-light: #f2cc78;
  --line: rgba(255,255,255,0.09);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 9, 13, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 13px;
}

.brand-name {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  color: #c9ccd4;
  font-size: 14px;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--gold-light);
}

.header-button {
  padding: 11px 19px;
  border-radius: 100px;
  background: var(--gold);
  color: #111;
  font-size: 13px;
  font-weight: 800;
  transition: 0.25s ease;
}

.header-button:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
}


/* HERO */

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 35%, rgba(215,168,79,0.13), transparent 30%),
    radial-gradient(circle at 15% 70%, rgba(255,255,255,0.035), transparent 28%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  padding: 90px 0;
}

.eyebrow,
.section-label {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 20px;
  max-width: 690px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -4px;
  font-weight: 800;
}

.hero h1 span {
  display: block;
  color: var(--gold-light);
}

.hero-text {
  max-width: 610px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111;
  box-shadow: 0 12px 35px rgba(215,168,79,0.15);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(215,168,79,0.22);
}

.secondary-button {
  border: 1px solid var(--line);
  color: #e4e5e8;
}

.secondary-button:hover {
  border-color: rgba(215,168,79,0.45);
  color: var(--gold-light);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #858b98;
  font-size: 12px;
}

.hero-note span {
  color: var(--gold-light);
  font-weight: 800;
}

.hero-product {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
}

.product-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(215,168,79,0.11);
  filter: blur(70px);
}

.product-card {
  position: relative;
  width: min(390px, 90%);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  backdrop-filter: blur(12px);
  box-shadow: 0 35px 90px rgba(0,0,0,0.45);
  transform: rotate(2deg);
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 7px 12px;
  border-radius: 100px;
  background: rgba(215,168,79,0.12);
  border: 1px solid rgba(215,168,79,0.25);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.product-image {
  width: 100%;
  height: 380px;
  object-fit: contain;
  margin-top: 5px;
  filter: drop-shadow(0 25px 25px rgba(0,0,0,0.4));
}

.product-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
  text-align: center;
}

.product-card-bottom strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.product-card-bottom span {
  color: var(--muted);
  font-size: 12px;
}


/* TRUST BAR */

.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0f14;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  color: var(--gold-light);
  font-size: 12px;
}

.trust-item span {
  color: #a9adb6;
  font-size: 13px;
}


/* SECTIONS */

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 55px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.about-content h2,
.routine-content h2,
.cta-inner h2 {
  margin-top: 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 5vw, 55px);
  line-height: 1.08;
  letter-spacing: -2.5px;
}

.section-heading p {
  margin-top: 20px;
  color: var(--muted);
}


/* ABOUT */

.about {
  background: #0b0d12;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 80px;
}

.about-content {
  max-width: 820px;
}

.about-content h2 {
  margin-bottom: 25px;
}

.about-content p {
  margin-top: 19px;
  color: #aeb2bd;
  font-size: 16px;
}

.about-content .lead {
  color: #f1f2f4;
  font-size: 21px;
  line-height: 1.6;
}

.about-content strong {
  color: #f0f1f3;
}

.highlight-line {
  margin-top: 35px;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(215,168,79,0.055);
  color: var(--gold-light);
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.signature-line {
  color: #e1c27c !important;
  font-weight: 700;
}


/* BENEFITS */

.benefits {
  background: var(--bg);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.benefit-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215,168,79,0.3);
}

.benefit-image {
  height: 290px;
  overflow: hidden;
}

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

.benefit-card:hover .benefit-image img {
  transform: scale(1.05);
}

.benefit-content {
  position: relative;
  padding: 28px;
}

.benefit-number {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.benefit-content h3 {
  margin-top: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
}

.benefit-content p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}


/* ROUTINE */

.routine {
  background:
    radial-gradient(circle at 80% 50%, rgba(215,168,79,0.08), transparent 35%),
    #0c0e13;
}

.routine-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 90px;
}

.routine-content h2 {
  max-width: 600px;
}

.routine-content > p {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
}

.routine-list {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.routine-item {
  display: flex;
  gap: 18px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
}

.routine-item > span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  padding-top: 3px;
}

.routine-item strong {
  font-size: 15px;
}

.routine-item p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.routine-visual {
  min-height: 470px;
  display: grid;
  place-items: center;
}

.routine-circle {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215,168,79,0.3);
  box-shadow:
    0 0 0 30px rgba(215,168,79,0.025),
    0 0 0 60px rgba(215,168,79,0.015);
  background: radial-gradient(circle, #19160e, #0d0f14 65%);
}

.routine-circle span {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 800;
}

.routine-circle strong {
  font-family: "Manrope", sans-serif;
  color: #fff;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -2px;
}

.routine-circle small {
  margin-top: 9px;
  color: #858995;
  letter-spacing: 4px;
  font-size: 9px;
}


/* CTA */

.cta-section {
  padding: 65px 0;
  background: linear-gradient(110deg, #18140b, #111319);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.cta-inner h2 {
  max-width: 750px;
  font-size: clamp(30px, 4vw, 46px);
}

.light-button {
  flex-shrink: 0;
}


/* GALLERY */

.gallery {
  background: #090a0e;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.gallery-item {
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}


/* FAQ */

.faq {
  background: #0d0f14;
}

.faq-container {
  max-width: 920px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  min-height: 76px;
  padding: 20px 4px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f2f3f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}

.faq-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 55px 24px 4px;
  color: var(--muted);
  font-size: 14px;
}


/* FINAL CTA */

.final-cta {
  padding: 130px 0;
  background:
    radial-gradient(circle at 70% 50%, rgba(215,168,79,0.13), transparent 35%),
    #08090d;
}

.final-cta-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

.final-cta-content {
  max-width: 760px;
}

.final-cta h2 {
  margin-top: 16px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -4px;
}

.final-cta p {
  max-width: 580px;
  margin: 25px auto 0;
  color: var(--muted);
}

.final-cta .primary-button {
  margin-top: 32px;
}


/* FOOTER */

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: #07080b;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand > div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.footer-brand span:not(.brand-mark) {
  color: #777c87;
  font-size: 11px;
}

.footer-inner > p {
  color: #676c77;
  font-size: 11px;
}


/* ANIMATION */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeUp 0.8s ease both;
}

.hero-product {
  animation: fadeUp 0.9s 0.15s ease both;
}


/* TABLET */

@media (max-width: 900px) {

  .main-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-text {
    max-width: 650px;
  }

  .hero-product {
    min-height: 430px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .routine-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .routine-visual {
    min-height: 380px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

}


/* MOBILE */

@media (max-width: 600px) {

  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-name {
    font-size: 13px;
  }

  .header-button {
    padding: 9px 13px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 70px 0 55px;
  }

  .hero h1 {
    font-size: 47px;
    letter-spacing: -2.5px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-note {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-product {
    min-height: 370px;
  }

  .product-card {
    width: min(330px, 94%);
    padding: 20px;
  }

  .product-image {
    height: 310px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    min-height: 72px;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(3) {
    border-bottom: 0;
  }

  .trust-item:nth-child(4) {
    border-right: 0;
    border-bottom: 0;
  }

  .trust-item span {
    font-size: 11px;
  }

  .section {
    padding: 75px 0;
  }

  .section-heading h2,
  .about-content h2,
  .routine-content h2 {
    font-size: 37px;
    letter-spacing: -1.8px;
  }

  .about-content .lead {
    font-size: 18px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-image {
    height: 250px;
  }

  .routine-circle {
    width: 270px;
    height: 270px;
  }

  .routine-circle strong {
    font-size: 40px;
  }

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

  .gallery-item {
    height: 330px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer p {
    padding-right: 20px;
  }

  .final-cta {
    padding: 90px 0;
  }

  .final-cta h2 {
    font-size: 50px;
    letter-spacing: -2.5px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

}
