:root {
  --cream-1: #fafbf5;
  --cream-2: #f5faef;
  --cream-3: #fdfaeb;
  --cream-4: #f8f3ed;
  --espresso: #140b07;
  --coffee: #2b160f;
  --coffee-soft: #62402c;
  --copper: #b78452;
  --gold: #dac29a;
  --olive: #667248;
  --olive-dark: #263018;
  --line-light: rgba(250, 251, 245, 0.16);
  --line-dark: rgba(43, 22, 15, 0.14);
  --shadow-luxe: 0 36px 90px rgba(20, 11, 7, 0.36);
  --shadow-soft: 0 24px 70px rgba(43, 22, 15, 0.12);
}

* {
  box-sizing: border-box;
}

/* Garante que o atributo hidden sempre esconda o elemento, mesmo em classes (como
   .button) que definem seu proprio "display" e venceriam o hidden no empate de
   especificidade. */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  background: var(--espresso);
  color: var(--coffee);
  font-family: "Manrope", Arial, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mix-blend-mode: soft-light;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 3px;
  background: rgba(250, 251, 245, 0.08);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--copper), var(--gold));
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
}

.has-pointer .cursor-dot,
.has-pointer .cursor-ring {
  opacity: 1;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(218, 194, 154, 0.58);
  border-radius: 999px;
  transition:
    width 180ms ease,
    height 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.cursor-ring.is-hovering {
  width: 56px;
  height: 56px;
  border-color: rgba(218, 194, 154, 0.22);
  background: rgba(218, 194, 154, 0.08);
}

.site-header {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 76px);
  color: var(--cream-1);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    min-height 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(20, 11, 7, 0.84);
  border-bottom: 1px solid rgba(218, 194, 154, 0.12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: contain;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(250, 251, 245, 0.76);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.site-nav a,
.site-nav button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 13px;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.site-nav a:hover,
.site-nav button:hover {
  border-color: rgba(218, 194, 154, 0.22);
  background: rgba(250, 251, 245, 0.07);
  color: var(--cream-1);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  align-items: center;
  gap: clamp(34px, 7vw, 106px);
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(128px, 14vw, 178px) clamp(18px, 5vw, 76px) clamp(82px, 9vw, 120px);
  background:
    radial-gradient(circle at 72% 24%, rgba(183, 132, 82, 0.2), transparent 30%),
    radial-gradient(circle at 7% 90%, rgba(102, 114, 72, 0.22), transparent 33%),
    linear-gradient(145deg, #140b07 0%, #241008 52%, #0d0805 100%);
  color: var(--cream-1);
}

.hero::after {
  position: absolute;
  left: clamp(18px, 5vw, 76px);
  right: clamp(18px, 5vw, 76px);
  bottom: 82px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(218, 194, 154, 0.42), transparent);
  content: "";
}

.hero-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 20%, rgba(250, 251, 245, 0.07) 38%, transparent 54%),
    radial-gradient(circle at 70% 44%, rgba(250, 251, 245, 0.08), transparent 28%);
  opacity: 0.8;
}

.hero-copy,
.hero-stage,
.hero-strip {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 840px;
  color: #fffaf0;
  font-size: clamp(4rem, 8vw, 8.8rem);
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

h2 {
  color: var(--coffee);
  font-size: clamp(2.55rem, 5.5vw, 5.8rem);
}

h3 {
  color: inherit;
  font-size: clamp(2.1rem, 3.3vw, 3.45rem);
}

p {
  color: rgba(43, 22, 15, 0.74);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(250, 251, 245, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 0.92rem;
  font-weight: 900;
  isolation: isolate;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 15%, rgba(255, 255, 255, 0.34) 45%, transparent 70%);
  content: "";
  transform: translateX(-120%);
  transition: transform 620ms ease;
}

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

.button:hover::before {
  transform: translateX(120%);
}

.button.primary {
  background: linear-gradient(135deg, var(--copper), var(--gold));
  color: var(--espresso);
  box-shadow: 0 18px 42px rgba(183, 132, 82, 0.26);
}

.button.ghost {
  border-color: rgba(218, 194, 154, 0.34);
  background: rgba(250, 251, 245, 0.05);
  color: var(--cream-1);
}

.hero-stage {
  display: grid;
  place-items: center;
  min-height: 540px;
}

.seal-orbit {
  position: absolute;
  width: min(560px, 82vw);
  aspect-ratio: 1;
  border: 1px solid rgba(218, 194, 154, 0.16);
  border-radius: 50%;
  animation: orbitPulse 5.6s ease-in-out infinite;
}

.seal-orbit::before,
.seal-orbit::after {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(250, 251, 245, 0.09);
  border-radius: inherit;
  content: "";
}

.seal-orbit::after {
  inset: 16%;
}

.hero-logo {
  position: relative;
  width: min(430px, 78vw);
  border: 1px solid rgba(218, 194, 154, 0.34);
  border-radius: 50%;
  padding: clamp(16px, 2.5vw, 28px);
  background:
    radial-gradient(circle at 42% 30%, rgba(255, 255, 255, 0.9), rgba(253, 250, 235, 0.72) 45%, rgba(183, 132, 82, 0.16)),
    var(--cream-3);
  box-shadow: var(--shadow-luxe);
  transform-style: preserve-3d;
}

.hero-logo img {
  border-radius: 50%;
  filter: drop-shadow(0 18px 34px rgba(20, 11, 7, 0.24));
}

.hero-note {
  position: absolute;
  right: min(5vw, 64px);
  bottom: 96px;
  display: grid;
  gap: 5px;
  min-width: 126px;
  border: 1px solid rgba(218, 194, 154, 0.28);
  border-radius: 8px;
  padding: 16px;
  background: rgba(250, 251, 245, 0.08);
  color: var(--cream-1);
  backdrop-filter: blur(14px);
}

.hero-note span {
  color: rgba(250, 251, 245, 0.66);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 34px;
  overflow: hidden;
  border-top: 1px solid rgba(218, 194, 154, 0.14);
  border-bottom: 1px solid rgba(218, 194, 154, 0.14);
  padding: 17px 0;
  background: rgba(250, 251, 245, 0.05);
  color: rgba(250, 251, 245, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-strip span {
  animation: marquee 18s linear infinite;
}

.origin-section,
.products-section,
.partners-section,
.instagram-section {
  padding: clamp(68px, 9vw, 132px) clamp(18px, 5vw, 76px);
}

.origin-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  background:
    linear-gradient(120deg, rgba(18, 9, 6, 0.84), rgba(18, 9, 6, 0.58)),
    url("assets/Plantacao.png") center / cover no-repeat;
}

.origin-section h2,
.origin-section .eyebrow {
  color: var(--cream-1);
}

.section-kicker {
  position: sticky;
  top: 104px;
}

.origin-copy {
  display: grid;
  gap: 34px;
}

.origin-copy p {
  margin: 0;
  color: rgba(250, 251, 245, 0.82);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.origin-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(18, 9, 6, 0.4);
  backdrop-filter: blur(14px);
}

.origin-metrics div {
  display: grid;
  gap: 4px;
  min-height: 128px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 22px;
}

.origin-metrics div:last-child {
  border-right: 0;
}

.origin-metrics strong {
  color: var(--cream-1);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.9;
}

.origin-metrics span {
  color: rgba(250, 251, 245, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-section {
  background: linear-gradient(180deg, #120906 0%, #211109 100%);
  color: var(--cream-1);
}

.products-section h2,
.products-section .eyebrow {
  color: var(--cream-1);
}

.section-heading {
  max-width: 920px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

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

.product-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  border: 1px solid rgba(218, 194, 154, 0.26);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 46px);
  background:
    radial-gradient(circle at 80% 18%, rgba(218, 194, 154, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(250, 251, 245, 0.12), rgba(250, 251, 245, 0.04));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
  transform-style: preserve-3d;
}

.product-card::before {
  position: absolute;
  top: -120px;
  right: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(218, 194, 154, 0.16);
  border-radius: 50%;
  content: "";
}

.product-card.featured {
  background:
    radial-gradient(circle at 76% 18%, rgba(183, 132, 82, 0.32), transparent 34%),
    linear-gradient(145deg, rgba(218, 194, 154, 0.14), rgba(250, 251, 245, 0.035));
}

.product-tag {
  align-self: flex-start;
  border: 1px solid rgba(218, 194, 154, 0.28);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card h3 {
  color: #fff8e8;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.26);
}

.product-card p {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 248, 232, 0.78);
}

dl {
  display: grid;
  gap: 0;
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(218, 194, 154, 0.22);
  padding: 14px 0;
}

dt {
  color: rgba(255, 248, 232, 0.66);
  font-weight: 900;
}

dd {
  margin: 0;
  color: #fff8e8;
  font-weight: 900;
  text-align: right;
}

.partners-section {
  display: grid;
  gap: clamp(28px, 5vw, 48px);
  text-align: center;
  background:
    radial-gradient(circle at 0 0, rgba(183, 132, 82, 0.16), transparent 34%),
    var(--cream-3);
}

.partners-section .section-heading {
  margin: 0 auto;
}

.partners-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  width: max-content;
  animation: partners-scroll 16s linear infinite;
}

.partners-carousel:hover .partners-track {
  animation-play-state: paused;
}

.partner-card {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 130px;
  border-radius: 14px;
  padding: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 26px rgba(27, 18, 13, 0.1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(27, 18, 13, 0.16);
}

.partner-logo {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }

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

.instagram-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background:
    radial-gradient(circle at 84% 12%, rgba(218, 194, 154, 0.16), transparent 34%),
    linear-gradient(145deg, #140b07, #241008);
  color: var(--cream-1);
}

.instagram-section h2,
.instagram-section .eyebrow {
  color: var(--cream-1);
}

.instagram-section p {
  max-width: 790px;
  color: rgba(250, 251, 245, 0.68);
}

.contact-panels {
  display: grid;
  gap: 36px;
}

.instagram-panel {
  display: grid;
  justify-items: start;
  gap: 22px;
  border-left: 1px solid rgba(218, 194, 154, 0.36);
  padding-left: 28px;
}

.instagram-panel span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 0.95;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 76px);
  border-top: 1px solid rgba(218, 194, 154, 0.14);
  background: var(--espresso);
  color: rgba(250, 251, 245, 0.72);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.footer-developer {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.developer-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(250, 251, 245, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: normal;
}

.developer-credit img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(218, 194, 154, 0.3));
}

.developer-credit strong {
  color: var(--gold);
}

.terms-link {
  color: rgba(250, 251, 245, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: normal;
}

.terms-link:hover {
  color: var(--gold);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 24%, rgba(183, 132, 82, 0.2), transparent 30%),
    radial-gradient(circle at 7% 90%, rgba(102, 114, 72, 0.22), transparent 33%),
    linear-gradient(145deg, #140b07 0%, #241008 52%, #0d0805 100%);
}

.auth-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 76px);
  color: var(--cream-1);
}

.auth-back {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(218, 194, 154, 0.34);
  border-radius: 999px;
  color: var(--cream-1);
  font-weight: 800;
}

.auth-back:hover {
  border-color: rgba(218, 194, 154, 0.6);
  background: rgba(250, 251, 245, 0.06);
}

.auth-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 108px);
  padding: 20px clamp(18px, 5vw, 76px) 48px;
}

.auth-container {
  position: relative;
  width: min(100%, 920px);
  min-height: 700px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--cream-1);
  box-shadow: var(--shadow-luxe);
}

.auth-form-container {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  transition: all 0.6s ease-in-out;
}

.auth-sign-in {
  left: 0;
  z-index: 2;
}

.auth-sign-up {
  left: 0;
  z-index: 1;
  opacity: 0;
}

.auth-container.right-panel-active .auth-sign-up {
  z-index: 5;
  opacity: 1;
  transform: translateX(100%);
  animation: authShow 0.6s;
}

@keyframes authShow {
  0%,
  49.99% {
    z-index: 1;
    opacity: 0;
  }

  50%,
  100% {
    z-index: 5;
    opacity: 1;
  }
}

.auth-form {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px clamp(24px, 5vw, 54px);
  text-align: center;
}

.auth-form h1,
.auth-overlay-panel h1 {
  margin: 0;
  color: var(--coffee);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
}

.auth-form span {
  margin: 12px 0 18px;
  color: var(--muted, #786b5c);
  font-size: 0.88rem;
  line-height: 1.5;
}

.auth-form input {
  width: 100%;
  min-height: 48px;
  margin: 7px 0;
  border: 0;
  border-radius: 10px;
  background: rgba(43, 22, 15, 0.06);
  color: var(--coffee);
  font: inherit;
  padding: 13px 14px;
}

.auth-form input:focus {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

.auth-form button {
  min-height: 46px;
  margin-top: 16px;
  padding: 0 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--copper), var(--gold));
  color: var(--espresso);
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-form button:active {
  transform: scale(0.97);
}

.auth-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--olive);
  font-weight: 800;
}

.auth-status.is-error {
  color: var(--red, #a34c3f);
}

.auth-remember {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  margin: 6px 0 2px;
  color: var(--muted, #786b5c);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
}

.auth-remember input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--copper);
  cursor: pointer;
}

.auth-text-button {
  min-height: 0 !important;
  margin-top: -4px !important;
  border-color: transparent !important;
  background: transparent !important;
  color: var(--coffee-soft) !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.phone-bubble {
  display: none;
  width: 100%;
  margin-top: -2px;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(183, 132, 82, 0.14);
  color: var(--coffee-soft);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.phone-bubble::before {
  content: "Adicione tambem o DDD";
}

.has-phone-warning + .phone-bubble {
  display: block;
}

.otp-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.otp-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.otp-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 11, 7, 0.62);
  backdrop-filter: blur(8px);
}

.otp-dialog {
  position: relative;
  width: min(100%, 470px);
  padding: clamp(28px, 5vw, 44px);
  border-radius: 8px;
  background: var(--cream-1);
  box-shadow: var(--shadow-luxe);
  transform: translateY(14px);
  transition: transform 180ms ease;
}

.otp-modal.is-open .otp-dialog {
  transform: translateY(0);
}

.otp-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(43, 22, 15, 0.06);
  color: var(--coffee);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.otp-dialog .eyebrow {
  color: var(--copper);
}

.otp-dialog h2 {
  margin: 8px 0 10px;
  color: var(--coffee);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.otp-dialog p {
  margin: 0;
  color: rgba(43, 22, 15, 0.7);
}

.otp-dialog strong {
  color: var(--coffee);
}

.otp-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.otp-inputs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.otp-inputs input {
  width: 100%;
  aspect-ratio: 1;
  min-height: 50px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(43, 22, 15, 0.06);
  color: var(--coffee);
  font: inherit;
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 900;
  text-align: center;
}

.otp-inputs input:focus {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
  background: #fff;
}

.otp-form button[type="submit"] {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--copper), var(--gold));
  color: var(--espresso);
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.otp-test-code {
  margin: -4px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(43, 22, 15, 0.06);
  color: var(--coffee);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.auth-overlay-container {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 100;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.6s ease-in-out;
}

.auth-container.right-panel-active .auth-overlay-container {
  transform: translateX(-100%);
}

.auth-overlay {
  position: relative;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(135deg, var(--espresso), var(--coffee) 54%, #4a2c1c);
  color: var(--cream-1);
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}

.auth-container.right-panel-active .auth-overlay {
  transform: translateX(50%);
}

.auth-overlay-panel {
  position: absolute;
  top: 0;
  display: flex;
  width: 50%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(28px, 4vw, 54px);
  text-align: center;
  transition: transform 0.6s ease-in-out;
}

.auth-overlay-panel h1 {
  color: var(--cream-1);
}

.auth-overlay-panel p {
  max-width: 300px;
  margin: 18px 0 22px;
  color: rgba(250, 251, 245, 0.78);
  line-height: 1.65;
}

.auth-overlay-panel button.ghost {
  min-height: 46px;
  padding: 0 34px;
  border: 1px solid rgba(218, 194, 154, 0.5);
  border-radius: 999px;
  background: transparent;
  color: var(--cream-1);
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-overlay-panel button.ghost:hover {
  border-color: rgba(218, 194, 154, 0.85);
  background: rgba(250, 251, 245, 0.08);
}

.auth-overlay-left {
  transform: translateX(-20%);
}

.auth-container.right-panel-active .auth-overlay-left {
  transform: translateX(0);
}

.auth-overlay-right {
  right: 0;
  transform: translateX(0);
}

.auth-container.right-panel-active .auth-overlay-right {
  transform: translateX(20%);
}

.auth-disclaimer {
  max-width: 640px;
  margin: 22px auto 0;
  color: rgba(250, 251, 245, 0.72);
  font-size: 0.86rem;
  text-align: center;
}

@media (max-width: 720px) {
  .auth-container {
    min-height: 0;
  }

  .auth-main {
    padding-top: 12px;
  }

  .auth-form-container,
  .auth-container.right-panel-active .auth-form-container {
    position: relative;
    width: 100%;
    height: auto;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .auth-sign-up {
    display: none;
  }

  .auth-container.right-panel-active .auth-sign-up {
    display: block;
  }

  .auth-container.right-panel-active .auth-sign-in {
    display: none;
  }

  .auth-overlay-container,
  .auth-container.right-panel-active .auth-overlay-container {
    position: relative;
    left: 0;
    width: 100%;
    height: auto;
    transform: none;
  }

  .auth-overlay,
  .auth-container.right-panel-active .auth-overlay {
    position: relative;
    left: 0;
    width: 100%;
    height: auto;
    padding: 8px clamp(20px, 6vw, 40px) 28px;
    transform: none;
  }

  .auth-overlay-panel {
    position: relative;
    width: 100%;
    padding: 0;
  }

  .auth-overlay-left,
  .auth-container.right-panel-active .auth-overlay-left {
    display: none;
    transform: none;
  }

  .auth-container.right-panel-active .auth-overlay-left {
    display: flex;
  }

  .auth-overlay-right,
  .auth-container.right-panel-active .auth-overlay-right {
    display: flex;
    transform: none;
  }

  .auth-container.right-panel-active .auth-overlay-right {
    display: none;
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(0.96) rotate(0deg);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.03) rotate(7deg);
    opacity: 1;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-280px);
  }
}

@media (pointer: fine) {
  .cursor-dot,
  .cursor-ring {
    display: block;
  }
}

@media (max-width: 1240px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    background: rgba(20, 11, 7, 0.82);
    backdrop-filter: blur(18px);
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .origin-section,
  .partners-section,
  .instagram-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 176px;
  }

  .hero-stage {
    order: -1;
    min-height: 360px;
  }

  .hero-logo {
    width: min(300px, 74vw);
  }

  .hero-note {
    right: 0;
    bottom: 20px;
  }

  .section-kicker {
    position: static;
  }

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

  .product-card {
    min-height: 0;
  }

  .origin-metrics {
    grid-template-columns: 1fr;
  }

  .origin-metrics div {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .origin-metrics div:last-child {
    border-bottom: 0;
  }

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

  .footer-developer {
    order: 3;
  }
}

@media (max-width: 560px) {
  .brand {
    white-space: normal;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
  }

  .site-nav a,
  .site-nav button {
    padding: 9px 10px;
    text-align: center;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero {
    padding-top: 188px;
  }

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

  .hero-stage {
    min-height: 330px;
  }

  .hero-note {
    display: none;
  }

  .hero-strip {
    gap: 24px;
    font-size: 0.68rem;
  }

  .origin-section,
  .products-section,
  .partners-section,
  .instagram-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  dd {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
