:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-dark: #2f3437;
  --surface-dark-2: #24282b;
  --text: #0b0b0c;
  --muted: #4a4a4a;
  --line: rgba(11, 11, 12, 0.08);
  --line-light: rgba(255, 255, 255, 0.12);
  --accent: #f09610;
  --accent-2: #f5a623;
  --danger: #9e2a1f;
  --shadow-soft: 0 18px 40px rgba(11, 11, 12, 0.08);
  --shadow-strong: 0 30px 80px rgba(11, 11, 12, 0.16);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1220px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  background: #0b0b0c;
  /* Matches topbar/footer — prevents white overscroll flash */
}

body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #ffffff;
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.page-shell {
  overflow-x: hidden;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  background: #0b0b0c;
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(11, 11, 12, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand-name,
.footer-mark span {
  font-family: "Anton", sans-serif;
  letter-spacing: 0.02em;
}

.brand-name {
  font-size: 1.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button-black,
.button-gold {
  background: linear-gradient(135deg, #db8508 0%, #f5a623 100%);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(219, 133, 8, 0.24);
}

.button-black:hover,
.button-black:focus-visible,
.button-gold:hover,
.button-gold:focus-visible {
  background: linear-gradient(135deg, #c67607 0%, #db8508 100%);
}

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

.button-full {
  width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section {
  padding: 96px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section-heading h2,
.hero-copy h1,
.story-copy-card h2,
.statement-content h2,
.commerce-card h2,
.footer-signup h2 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.section-heading h2,
.story-copy-card h2,
.commerce-card h2,
.footer-signup h2 {
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
}

.section-heading p,
.hero-text,
.story-copy-card p,
.quote-card,
.research-list p,
.featured-card p,
.commerce-card p,
.tile-copy p,
.testimonial-card p,
.footer-copy,
.hero-mini-proof span {
  color: var(--muted);
  line-height: 1.75;
}

.editorial-hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  background: #0f1113;
  overflow: hidden;
}

.hero-bg-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  animation: heroBgPulse 14s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.94);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.28)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.08));
}

.hero-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 118px);
  padding: 56px 24px 70px;
}

.hero-inner {
  width: min(1220px, calc(100vw - 48px));
}

.hero-label,
.hero-title,
.hero-sub,
.hero-small,
.hero-cta {
  opacity: 0;
  transform: translateY(28px);
  animation: heroTextIn 0.9s ease forwards;
}

.hero-label {
  display: inline-block;
  margin: 0 0 24px;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  animation-delay: 0.1s;
}

.hero-sketch-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr);
  align-items: end;
  gap: 64px;
}

.hero-copy-column,
.hero-info-column {
  align-self: stretch;
}

.hero-copy-column {
  padding-left: 28px;
  transform: translate3d(0, var(--hero-copy-shift, 0px), 0);
  will-change: transform;
}

.hero-title {
  margin: 0;
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-size: clamp(4.4rem, 8vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 500px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.hero-title span {
  display: block;
}

.hero-sub {
  margin: 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.2rem;
  line-height: 1.55;
  font-weight: 700;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.hero-small {
  margin: 16px 0 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.7;
  animation-delay: 0.46s;
}

.hero-info-column {
  display: grid;
  gap: 18px;
  justify-items: start;
  padding-top: 0;
  padding-bottom: 46px;
  margin-left: auto;
  transform: translate3d(0, var(--hero-info-shift, 0px), 0);
  will-change: transform;
}

.hero-lines {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.hero-lines li {
  position: relative;
  padding-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.55;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.hero-lines li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(220px, 100%);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 26px 0 0;
  gap: 14px;
  animation-delay: 0.58s;
}

.hero-cta .button:hover,
.hero-cta .button:focus-visible {
  transform: translateY(-2px) scale(1.05);
}

.hero-cta .button-black:hover,
.hero-cta .button-black:focus-visible,
.hero-cta .button-gold:hover,
.hero-cta .button-gold:focus-visible {
  box-shadow: 0 18px 42px rgba(240, 150, 16, 0.38);
}

.product-card {
  position: relative;
  width: 330px;
  border-radius: 42px;
  background: #ffffff;
  border: 1px solid rgba(11, 11, 12, 0.08);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  transform: rotate(-10deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: rotate(-6deg) translateY(-8px) scale(1.03);
}

.product-card-small {
  width: 220px;
  transform: rotate(-6deg);
}

.product-cap {
  height: 86px;
  background: linear-gradient(180deg, #43494d 0%, #2f3437 100%);
}

.product-body {
  padding: 30px 28px 28px;
  background: #ffffff;
}

.product-edition {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-body h2 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: 3.2rem;
  line-height: 0.92;
  text-transform: uppercase;
}

.product-body p {
  margin: 14px 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.marquee-track {
  display: flex;
  gap: 44px;
  width: max-content;
  padding: 16px 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: "Anton", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--surface-dark);
}

.section-heading-split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-link {
  white-space: nowrap;
  color: var(--danger);
  font-weight: 700;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.glass-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: linear-gradient(180deg,
      #f5efe6 0%,
      #efe6d8 50%,
      #f8f4ed 100%);
}

.glass-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 150, 16, 0.15), transparent 70%);
  filter: blur(80px);
}

.glass-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08), transparent 70%);
  filter: blur(80px);
}

.glass-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.glass-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: #111;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: floatCard 6s ease-in-out infinite;
}

.glass-card:nth-child(2) {
  animation-delay: 1s;
}

.glass-card:nth-child(3) {
  animation-delay: 2s;
}

.glass-card:nth-child(4) {
  animation-delay: 3s;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at top, rgba(240, 150, 16, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover,
.glass-card:focus-within {
  transform: translateY(-12px) scale(1.04);
  box-shadow:
    0 30px 70px rgba(240, 150, 16, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.glass-card:hover::before,
.glass-card:focus-within::before {
  opacity: 1;
}

.glass-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #111;
}

.glass-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.featured-card,
.story-copy-card,
.testimonial-card,
.commerce-card {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.featured-card {
  position: relative;
  padding: 24px;
  min-height: 520px;
  display: grid;
  align-content: start;
  gap: 16px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(219, 133, 8, 0.14);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(219, 133, 8, 0.16);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.featured-product,
.featured-image {
  min-height: 260px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.featured-product {
  background:
    linear-gradient(180deg, rgba(210, 225, 234, 0.46), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.featured-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.featured-card h3,
.research-list h3,
.tile-copy h3,
.footer-grid h3 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.featured-meta strong {
  font-size: 1.2rem;
}

.split-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.story-image-card {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #111;
}

.story-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.story-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.4));
}

.story-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  min-height: 40px;
  padding: 0 14px;
  background: var(--accent);
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.story-tag-top {
  left: 50px;
  top: 110px;
}

.story-tag-bottom {
  left: 170px;
  bottom: 120px;
}

.story-copy-card {
  padding: 60px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 181, 71, 0.08), rgba(47, 52, 55, 0.06)),
    #2f3437;
  color: #ffffff;
}

.story-copy-card p {
  color: rgba(255, 255, 255, 0.78);
}

.story-copy-card .eyebrow {
  color: var(--accent-2);
}

.story-copy-card h2 span {
  display: block;
  color: var(--accent-2);
}

.statement-shell {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #111;
}

.statement-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  animation: statementBgPulse 14s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

.statement-bg img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.05);
  will-change: transform;
}

.statement-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.2));
}

.statement-content {
  position: relative;
  z-index: 2;
  min-height: 620px;
  padding: 42px;
  color: #ffffff;
  display: grid;
  align-content: center;
  gap: 22px;
}

.statement-content h2,
.quote-card,
.brain-circles,
.statement-side-card {
  will-change: transform;
}

.statement-content h2 {
  max-width: 780px;
  font-size: clamp(4rem, 10vw, 8rem);
  opacity: 0;
  transform: translateY(34px) scale(0.96);
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.statement-shell.is-visible .statement-content h2 {
  animation: statementTitleIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards, statementTitleFloat 5.5s ease-in-out 1.1s infinite;
}

.quote-card,
.statement-side-card {
  max-width: 280px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.statement-side-card {
  margin-left: auto;
}

.brain-circles {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.brain-circle {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  animation: pulseCircle 4.5s ease-in-out infinite;
}

.brain-circle:nth-child(2) {
  animation-delay: 0.5s;
}

.brain-circle:nth-child(3) {
  animation-delay: 1s;
}

.research-grid,
.commerce-shell,
.footer-signup {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.research-list {
  display: grid;
  gap: 22px;
}

.research-list article {
  position: relative;
  padding-left: 72px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.research-step {
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #db8508 0%, #f5a623 100%);
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-size: 1.1rem;
}

.research-visual {
  display: grid;
  place-items: center;
  min-height: 520px;
}

.orbit-shell {
  position: relative;
  width: 520px;
  height: 520px;
}

.orbit-center {
  position: absolute;
  inset: 50%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.orbit-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.82);
}

.orbit-ring {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(240, 150, 16, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 1px rgba(240, 150, 16, 0.04),
    0 0 30px rgba(240, 150, 16, 0.08);
  animation: orbitRadiate 3.8s ease-out infinite;
}

.orbit-ring-one {
  width: 320px;
  height: 320px;
}

.orbit-ring-two {
  width: 460px;
  height: 460px;
  animation-delay: 1.2s;
}

.orbit-bubble {
  position: absolute;
  z-index: 2;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09610, #f5a623);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-size: 0.72rem;
  padding: 8px;
  box-shadow: 0 15px 30px rgba(240, 150, 16, 0.3);
  animation: floatBubble 6s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orbit-bubble h4 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.orbit-bubble span {
  margin-top: 8px;
  font-size: 0.64rem;
  line-height: 1.35;
  opacity: 0.9;
}

.orbit-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 25px 50px rgba(240, 150, 16, 0.5);
}

.bubble-1 {
  top: 6%;
  left: 14%;
}

.bubble-2 {
  top: 22%;
  right: 2%;
  animation-delay: 1s;
}

.bubble-3 {
  bottom: 14%;
  left: 8%;
  animation-delay: 2s;
}

.bubble-4 {
  bottom: 6%;
  right: 10%;
  animation-delay: 3s;
}

.product-page {
  padding: 80px 5%;
  background: #0b0b0c;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.product-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: center;
  gap: 40px;
}

.product-left {
  display: flex;
  justify-content: center;
}

.product-left img {
  width: 100%;
  max-width: 420px;
  object-fit: contain;
}

.product-right {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.product-right h1 {
  margin: 0 0 8px;
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.tagline {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0 0 16px;
}

.price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #f5a623;
  margin-bottom: 18px;
}

.qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.qty button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f09610;
  color: #ffffff;
  font-weight: 800;
}

.qty span {
  min-width: 16px;
  text-align: center;
  font-weight: 800;
}

.buy-btn {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #f09610, #f5a623);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.trust {
  margin-top: 14px;
  font-size: 0.8rem;
  opacity: 0.8;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fbf8f2 0%, #f5efe4 52%, #ffffff 100%);
  color: var(--text);
  border-top: 1px solid rgba(11, 11, 12, 0.06);
}

.reviews {
  text-align: center;
  margin-bottom: 80px;
}

.reviews h2 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
}

.sub {
  margin: 10px 0 40px;
  color: var(--muted);
}

.review-proof {
  margin: -18px 0 0;
  text-align: center;
  color: var(--muted);
  opacity: 0.7;
  font-size: 0.92rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.review-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(11, 11, 12, 0.07);
  border-radius: 18px;
  padding: 28px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, #f5a623, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: 0.4s ease;
}

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

.review-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.review-card:hover::before {
  opacity: 1;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.review-card .stars {
  color: #f5a623;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.review-card .user {
  margin-top: 14px;
  font-weight: 700;
}

.review-role {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.feedback-box {
  max-width: 600px;
  margin: 0 auto 80px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 11, 12, 0.08);
  box-shadow: 0 24px 50px rgba(11, 11, 12, 0.1);
}

.feedback-box h3 {
  margin: 0 0 18px;
  font-family: "Anton", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.feedback-box input,
.feedback-box select,
.feedback-box textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(11, 11, 12, 0.1);
  background: rgba(245, 241, 234, 0.9);
  color: var(--text);
}

.feedback-box select option {
  color: #0b0b0c;
}

.feedback-box textarea {
  height: 100px;
  margin-bottom: 15px;
  resize: vertical;
}

.feedback-box button {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #f09610, #f5a623);
  color: #ffffff;
  font-weight: 800;
}

.faq {
  max-width: 700px;
  margin: auto;
}

.faq h2 {
  margin: 0 0 20px;
  font-family: "Anton", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
}

.faq-item {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 11, 12, 0.08);
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(11, 11, 12, 0.06);
}

.faq-q {
  font-weight: 700;
}

.faq-a {
  display: none;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.tile-grid,
.social-proof-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

.tile-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.tile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.52));
}

.tile-card-gold::after {
  background: linear-gradient(180deg, rgba(219, 133, 8, 0.18), rgba(0, 0, 0, 0.58));
}

.tile-card-light::after {
  background: linear-gradient(180deg, rgba(47, 52, 55, 0.05), rgba(47, 52, 55, 0.44));
}

.tile-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: #ffffff;
}

.tile-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.tile-copy a {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  color: #ffffff;
}

.testimonial-card {
  padding: 26px;
}

.testimonial-card strong {
  display: block;
  margin-top: 22px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.testimonial-card span {
  color: var(--muted);
}

.site-footer {
  background: #0b0b0c;
  color: #ffffff;
  padding: 58px 0 0;
}

.footer-signup {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 24px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-signup h2,
.footer-copy,
.footer-grid a,
.footer-grid span {
  color: #ffffff;
}

.footer-form {
  display: flex;
  gap: 12px;
}

.footer-form input {
  flex: 1;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.footer-grid {
  grid-template-columns: 1.1fr 0.8fr 0.8fr 0.8fr;
  padding: 34px 0 30px;
}

.footer-grid h3 {
  font-size: 1.4rem;
}

.footer-grid a,
.footer-grid span,
.footer-copy {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-mark {
  overflow: hidden;
  padding-top: 8px;
}

.footer-mark span {
  display: block;
  font-size: clamp(6rem, 20vw, 18rem);
  line-height: 0.82;
  color: #ffffff;
  opacity: 0.08;
}

.footer-credit {
  margin: 10px 0 0;
  padding-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  text-align: center;
}

/* ════════════════════════════════
   FEEDBACK THANK-YOU POPUP
════════════════════════════════ */
.feedback-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(11, 11, 12, 0.58);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.feedback-popup-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

.feedback-popup {
  background: #ffffff;
  border-radius: 32px;
  padding: 52px 44px 44px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 40px 100px rgba(11, 11, 12, 0.22),
    0 8px 32px rgba(11, 11, 12, 0.1);
  transform: translateY(40px) scale(0.94);
  transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

/* Warm glow blob in background */
.feedback-popup::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.16), transparent 70%);
  pointer-events: none;
}

.feedback-popup-overlay.is-active .feedback-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Icon + ring */
.feedback-popup-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
}

.feedback-popup-icon svg {
  width: 72px;
  height: 72px;
  position: relative;
  z-index: 1;
  animation: popupCheckIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes popupCheckIn {
  0% {
    transform: scale(0) rotate(-20deg);
    opacity: 0;
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.popup-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2.5px solid rgba(245, 166, 35, 0.4);
  animation: popupRingPulse 2s ease-out 0.6s infinite;
}

@keyframes popupRingPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.feedback-popup h3 {
  margin: 0 0 12px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
}

.feedback-popup p {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.popup-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 36px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #db8508, #f5a623);
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(219, 133, 8, 0.3);
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease;
  letter-spacing: 0.01em;
}

.popup-close-btn:hover,
.popup-close-btn:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 40px rgba(219, 133, 8, 0.38);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #1aad4c 0%, #25d366 100%);
  color: #ffffff;
  box-shadow:
    0 8px 24px rgba(37, 211, 102, 0.42),
    0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease;
  text-decoration: none;
}

/* Pulse ring */
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: waPulse 2.2s ease-out infinite;
  pointer-events: none;
}

/* Second outer ring */
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.18);
  animation: waPulse 2.2s ease-out 0.7s infinite;
  pointer-events: none;
}

/* Tooltip */
.whatsapp-float [data-tooltip] {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  white-space: nowrap;
  background: #0b0b0c;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover [data-tooltip] {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-5px) scale(1.08);
  box-shadow:
    0 16px 40px rgba(37, 211, 102, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.14);
}

.whatsapp-float svg {
  width: 30px;
  fill: currentColor;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
  transform: translateX(-32px);
}

.reveal-right {
  transform: translateX(32px);
}

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

@keyframes floatProduct {

  0%,
  100% {
    transform: rotate(-10deg) translateY(0);
  }

  50% {
    transform: rotate(-7deg) translateY(-12px);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes heroBackgroundZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

@keyframes heroBgPulse {
  0% {
    transform: scale(1.02);
  }

  45% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1.02);
  }
}

@keyframes statementBgPulse {
  0% {
    transform: scale(1.01);
  }

  50% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1.01);
  }
}

@keyframes statementTitleIn {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.96);
    letter-spacing: 0;
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: 0.01em;
  }
}

@keyframes statementTitleFloat {

  0%,
  100% {
    transform: translateY(0);
  }

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

/* ════════════════════════════════
   CHECKOUT SUCCESS POPUP
════════════════════════════════ */
.checkout-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.checkout-success-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

.checkout-success-popup {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  border-radius: 28px;
  padding: 48px 40px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  opacity: 0;
}

.checkout-success-overlay.is-active .checkout-success-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.success-icon-frame {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.success-icon-frame svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(76, 175, 80, 0.3));
}

.success-ring {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(76, 175, 80, 0.4);
  border-radius: 50%;
  animation: successRingPulse 2s ease-out infinite;
}

@keyframes successRingPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.checkout-success-popup h3 {
  font-family: "Anton", sans-serif;
  font-size: 2.2rem;
  margin: 0 0 12px;
  color: #0b0b0c;
  text-transform: uppercase;
}

.checkout-success-popup p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.success-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.success-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.success-row:last-child {
  margin-bottom: 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.status-pill {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 2px 10px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.8rem;
}

.success-note {
  font-size: 0.88rem;
  opacity: 0.8;
}

.success-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.success-footer .button {
  width: 100%;
  min-height: 54px;
  font-weight: 700;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

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

/* ════════════════════════════════
   SHIPPING CHECKOUT MODAL
════════════════════════════════ */
.checkout-form-overlay {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.checkout-form-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

.checkout-form-popup {
  background: #ffffff;
  width: 100%;
  max-width: 500px;
  border-radius: 28px;
  padding: 40px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  transform: translateY(40px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  opacity: 0;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(219, 133, 8, 0.4) transparent;
}

.checkout-form-popup::-webkit-scrollbar {
  width: 10px;
}

.checkout-form-popup::-webkit-scrollbar-track {
  background: transparent;
  margin: 60px 0;
}

.checkout-form-popup::-webkit-scrollbar-thumb {
  background: rgba(219, 133, 8, 0.45);
  border-radius: 99px;
  border-right: 5px solid white;
  border-left: 1px solid transparent;
  background-clip: padding-box;
}

.checkout-form-popup::-webkit-scrollbar-thumb:hover {
  background: #db8508;
  border-right: 5px solid white;
  background-clip: padding-box;
}

.checkout-form-overlay.is-active .checkout-form-popup {
  transform: translateY(0);
  opacity: 1;
}

.form-close-x {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f0f0;
  border: 0;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.form-close-x:hover {
  background: #e0e0e0;
}

.checkout-form-popup h3 {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.form-desc {
  color: #666;
  margin-bottom: 30px;
}

.input-group {
  margin-bottom: 20px;
  text-align: left;
}

.input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid #eee;
  font-size: 1rem;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: 0;
  border-color: #db8508;
  background: #fff;
}

.input-group textarea {
  height: 100px;
  resize: none;
}

.form-row-pincode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Payment Methods */
.payment-method-shell {
  margin-top: 10px;
  margin-bottom: 30px;
}

.method-label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}

.method-options {
  display: grid;
  gap: 12px;
}

.method-card {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1.5px solid #eee;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  background: #fafafa;
}

.method-card input {
  position: absolute;
  opacity: 0;
}

.method-card.is-selected {
  border-color: #db8508;
  background: rgba(219, 133, 8, 0.04);
}

.method-card::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  margin-right: 14px;
  display: block;
  flex-shrink: 0;
  background: #fff;
}

.method-card.is-selected::before {
  border: 6px solid #db8508;
}

.method-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.method-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: #111;
}

.method-sub {
  font-size: 0.8rem;
  color: #666;
}

.method-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 8px;
  background: #e3f2fd;
  color: #1976d2;
  border-radius: 6px;
}

.order-submit-btn {
  width: 100%;
  padding: 18px;
  border-radius: 99px;
  border: 0;
  background: #111;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.order-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes floatBubble {

  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes heroTextIn {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBottleFloat {

  0%,
  100% {
    transform: translateY(-10px);
  }

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

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

@keyframes floatProductImage {

  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes pulseCircle {

  0%,
  100% {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.12);
  }

  50% {
    transform: scale(1.06);
    background: rgba(219, 133, 8, 0.28);
  }
}

@keyframes orbitRadiate {
  0% {
    opacity: 0.22;
    box-shadow:
      0 0 0 0 rgba(240, 150, 16, 0.12),
      0 0 0 0 rgba(240, 150, 16, 0.08);
  }

  50% {
    opacity: 0.46;
    box-shadow:
      0 0 0 12px rgba(240, 150, 16, 0.06),
      0 0 36px rgba(240, 150, 16, 0.12);
  }

  100% {
    opacity: 0.18;
    box-shadow:
      0 0 0 22px rgba(240, 150, 16, 0),
      0 0 54px rgba(240, 150, 16, 0.03);
  }
}

@media (max-width: 1120px) {

  .hero-shell,
  .featured-grid,
  .split-story-grid,
  .research-grid,
  .commerce-shell,
  .tile-grid,
  .social-proof-grid,
  .footer-grid,
  .footer-signup {
    grid-template-columns: 1fr;
  }

  .orbit-shell {
    width: 420px;
    height: 420px;
  }

  .topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brain-circles {
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.is-open {
    display: flex;
  }

  .story-copy-card,
  .product-right {
    padding: 34px 24px;
  }

  .statement-content {
    padding: 28px;
  }

  .statement-content h2 {
    font-size: clamp(3rem, 13vw, 5.4rem);
  }

  .brain-circle {
    width: 112px;
    height: 112px;
    font-size: 1rem;
  }

  .footer-form {
    flex-direction: column;
  }

  .hero-center {
    min-height: calc(100vh - 118px);
    padding: 44px 24px 64px;
  }

  .hero-inner {
    width: 100%;
  }

  .hero-sketch-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    align-items: center;
  }

  .hero-label,
  .hero-cta {
    justify-content: center;
  }

  .hero-title,
  .hero-sub {
    max-width: none;
  }

  .hero-copy-column {
    padding-left: 0;
  }

  .hero-info-column {
    justify-items: center;
    padding-top: 0;
    padding-bottom: 0;
    margin-left: 0;
  }

  .hero-lines li::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .product-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100vw - 28px, 1220px);
  }

  .section {
    padding: 74px 0;
  }

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

  .button {
    width: 100%;
  }

  .topbar {
    display: none;
  }

  .hero-center {
    min-height: calc(100vh - 78px);
    padding: 30px 0;
  }

  .hero-inner {
    width: min(100vw - 28px, 1220px);
  }

  .product-right {
    padding: 24px 20px;
  }

  .hero-title {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

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

  .hero-small {
    font-size: 0.92rem;
  }

  .featured-card,
  .testimonial-card {
    padding: 20px;
  }

  .orbit-shell {
    width: 290px;
    height: 290px;
  }

  .orbit-center {
    width: 120px;
    height: 120px;
  }

  .orbit-ring-one {
    width: 190px;
    height: 190px;
  }

  .orbit-ring-two {
    width: 270px;
    height: 270px;
  }

  .orbit-bubble {
    width: 76px;
    height: 76px;
    padding: 6px;
  }

  .orbit-bubble h4 {
    font-size: 0.62rem;
  }

  .orbit-bubble span {
    margin-top: 5px;
    font-size: 0.52rem;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}

/* ════════════════════════════════
   MOBILE: ANTI-OVERFLOW BASE FIX
════════════════════════════════ */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ════════════════════════════════
   768px TABLET BREAKPOINT
════════════════════════════════ */
@media (max-width: 768px) {
  .hero-sketch-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .split-story-grid,
  .research-grid,
  .commerce-shell,
  .footer-signup {
    grid-template-columns: 1fr;
  }

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

  .tile-grid,
  .social-proof-grid {
    grid-template-columns: 1fr;
  }

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

  .story-image-card {
    min-height: 320px;
  }

  .section {
    padding: 64px 0;
  }

  .orbit-shell {
    width: 340px;
    height: 340px;
  }

  .orbit-ring-one {
    width: 220px;
    height: 220px;
  }

  .orbit-ring-two {
    width: 310px;
    height: 310px;
  }

  .orbit-center {
    width: 140px;
    height: 140px;
  }

  .orbit-bubble {
    width: 84px;
    height: 84px;
    font-size: 0.66rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .button {
    width: 100%;
    justify-content: center;
  }

  .feedback-box {
    padding: 24px 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .success-footer {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    font-size: 0.7rem;
  }
}

/* ════════════════════════════════
   480px MOBILE PORTRAIT
════════════════════════════════ */
@media (max-width: 480px) {
  :root {
    --container: min(100vw - 24px, 1220px);
  }

  .topbar {
    display: none;
  }

  .section {
    padding: 52px 0;
  }

  .hero-center {
    padding: 32px 0 48px;
    min-height: calc(100svh - 78px);
  }

  .hero-inner {
    width: min(100vw - 24px, 1220px);
  }

  .hero-title {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hero-sub {
    font-size: 1rem;
    max-width: 100%;
  }

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

  .hero-copy-column {
    padding-left: 0;
  }

  .hero-info-column {
    justify-items: center;
    padding: 0;
    margin: 0;
  }

  .hero-label,
  .hero-cta {
    justify-content: center;
  }

  .hero-lines li::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .glass-card {
    padding: 28px 22px;
  }

  .split-story-grid {
    gap: 0;
  }

  .story-image-card {
    min-height: 260px;
  }

  .story-copy-card {
    padding: 32px 20px;
  }

  .statement-content {
    padding: 24px 20px;
    min-height: auto;
  }

  .statement-content h2 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .statement-shell {
    min-height: auto;
  }

  .quote-card,
  .statement-side-card {
    max-width: 100%;
  }

  .brain-circles {
    justify-content: center;
    gap: 12px;
  }

  .brain-circle {
    width: 96px;
    height: 96px;
    font-size: 0.88rem;
  }

  .orbit-shell {
    width: 280px;
    height: 280px;
  }

  .orbit-ring-one {
    width: 180px;
    height: 180px;
  }

  .orbit-ring-two {
    width: 255px;
    height: 255px;
  }

  .orbit-center {
    width: 110px;
    height: 110px;
  }

  .orbit-bubble {
    width: 70px;
    height: 70px;
    padding: 5px;
  }

  .orbit-bubble h4 {
    font-size: 0.58rem;
  }

  .orbit-bubble span {
    font-size: 0.48rem;
    margin-top: 4px;
  }

  .research-list article {
    padding-left: 60px;
  }

  .research-step {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 22px 18px;
  }

  .tile-grid,
  .social-proof-grid {
    grid-template-columns: 1fr;
  }

  .tile-card {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-signup {
    grid-template-columns: 1fr;
  }

  .footer-form {
    flex-direction: column;
  }

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

  .button {
    min-height: 50px;
    padding: 0 20px;
    font-size: 0.92rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-cta .button {
    width: 100%;
  }

  .nav-buy {
    display: none;
  }

  .product-right {
    padding: 22px 16px;
  }

  .feedback-box {
    padding: 20px 16px;
    margin-bottom: 48px;
  }

  .faq {
    max-width: 100%;
  }

  .checkout-form-popup {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .checkout-success-popup {
    padding: 36px 24px 28px;
  }

  .success-footer {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feedback-popup {
    padding: 36px 28px 32px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }
}

/* ════════════════════════════════
   360px VERY SMALL PHONES
════════════════════════════════ */
@media (max-width: 360px) {
  .hero-title {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }

  .navbar {
    min-height: 66px;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .orbit-shell {
    width: 240px;
    height: 240px;
  }

  .orbit-ring-two {
    width: 225px;
    height: 225px;
  }

  .checkout-form-popup {
    padding: 24px 16px;
  }
}

/* Statement section — show bottle on mobile (bottle is on right side of bg image) */
@media (max-width: 768px) {
  .statement-bg img {
    object-position: 65% center;
    /* Pans view right to make bottle visible on narrow screens */
  }
}

/* ════════════════════════════════
   MOBILE HERO — SCROLL REVEAL
   (Only on mobile ≤768px)
   hero-inner hidden on load.
   JS adds body class → removes on first scroll → CSS transition reveals content.
════════════════════════════════ */
@media (max-width: 768px) {

  /* Transition always present so removal of pending class is smooth */
  .hero-inner {
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  /* Initial hidden state — controlled by inline head script via html class */
  html.mobile-hero-pending .hero-inner {
    opacity: 0;
    transform: translateY(44px);
    pointer-events: none;
  }
}