:root {
  --black: #070604;
  --black-2: #12100d;
  --cream: #f6f0e6;
  --paper: #fbf8f1;
  --line: #dfd2c2;
  --muted: #75695e;
  --text: #221915;
  --gold: #d6b06c;
  --gold-soft: #ead7b3;
  --pink: #d68c88;
  --pink-dark: #bd6c6a;
  --rose-ink: #7b3d3b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 18px 54px rgba(64, 43, 31, 0.14);
  --shadow-lift: 0 24px 76px rgba(34, 25, 21, 0.22);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.8), rgba(246, 240, 230, 0.2) 32%, rgba(251, 248, 241, 0.9)),
    var(--paper);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.6rem 0.8rem;
  background: var(--pink);
  color: var(--black);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(1328px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(214, 176, 108, 0.24);
  background: rgba(7, 6, 4, 0.82);
  color: #fff;
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: background 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(214, 176, 108, 0.16);
  background: rgba(7, 6, 4, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.nav {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.brand:hover,
.footer-brand:hover {
  color: var(--gold-soft);
  transform: translateY(-1px);
}

.brand svg,
.footer-brand svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.brand img {
  width: 180px;
  height: 44px;
  object-fit: cover;
  object-position: center;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(0.78rem, 2.2vw, 2.2rem);
  flex-wrap: wrap;
}

.nav-links a,
.footer-links a {
  position: relative;
  color: inherit;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--pink);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.42rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid var(--black);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  padding: 0.68rem 1.05rem;
  background: var(--black);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), background 220ms ease, border-color 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 42%, transparent 74%);
  transform: translateX(-130%);
  transition: transform 700ms var(--ease-out);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

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

.button:focus-visible,
.icon-button:focus-visible,
.prototype-video:focus-visible,
.modal-close:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(214, 176, 108, 0.52);
  outline-offset: 3px;
}

.button-small {
  min-height: 38px;
  padding: 0.64rem 1rem;
  white-space: nowrap;
}

.button-pink {
  border-color: var(--pink);
  background: linear-gradient(135deg, var(--pink), #c97976);
  color: #fff;
  box-shadow: 0 14px 34px rgba(189, 108, 106, 0.22);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.44);
  background: transparent;
  color: #fff;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.96) 0%, rgba(8, 7, 5, 0.86) 42%, rgba(8, 7, 5, 0.62) 100%),
    radial-gradient(circle at 82% 26%, rgba(214, 176, 108, 0.2), transparent 30%),
    radial-gradient(circle at 58% 0%, rgba(214, 140, 136, 0.14), transparent 24%),
    linear-gradient(180deg, #050403 0%, #0e0c09 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    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: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.65), transparent 74%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 78px;
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  min-height: min(680px, calc(100vh - 58px));
  padding: clamp(38px, 5vw, 70px) 0 clamp(34px, 5vw, 60px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 4.05vw, 5.05rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.99;
  text-wrap: balance;
}

.hero-copy h1 em {
  display: block;
  color: var(--pink);
  font-style: italic;
  white-space: normal;
}

.hero-copy p {
  max-width: 500px;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.2vw, 1.13rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.hero-proof {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.85rem;
  margin-top: 1.55rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.64rem;
  font-weight: 800;
}

.hero-proof svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hero-product {
  position: relative;
  z-index: 1;
  transform: translate3d(0, var(--hero-y, 0px), 0);
  transition: transform 500ms var(--ease-out);
}

.hero-product img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 34px 100px rgba(0, 0, 0, 0.72));
  animation: productFloat 7s ease-in-out infinite;
}

.testimonial-strip {
  border-top: 1px solid rgba(214, 176, 108, 0.22);
  border-bottom: 1px solid rgba(214, 176, 108, 0.16);
  background:
    linear-gradient(90deg, rgba(214, 176, 108, 0.1), transparent 22%, rgba(214, 140, 136, 0.1) 86%, transparent),
    linear-gradient(90deg, #11100d, #1b1712);
  color: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 0.88fr repeat(3, 1fr) 0.55fr;
  gap: 1.6rem;
  align-items: center;
  min-height: 158px;
  padding: 1.6rem 0;
}

.testimonial-label,
.section-label,
.mini-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.testimonial-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0.2rem 0.85rem;
  transition: transform 220ms var(--ease-out);
}

.testimonial-grid article:hover {
  transform: translateY(-3px);
}

.testimonial-grid p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--serif);
  font-size: 0.88rem;
  line-height: 1.35;
}

.testimonial-grid strong,
.testimonial-grid span {
  grid-column: 2;
  font-size: 0.76rem;
}

.testimonial-grid span {
  color: rgba(255, 255, 255, 0.6);
}

.avatar {
  grid-row: 1 / span 3;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 176, 108, 0.4);
  border-radius: 50%;
  background: linear-gradient(135deg, #ddc4a1, #6c4733);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.rating {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 1.2rem;
}

.rating::before {
  content: "★★★★★";
  display: block;
  color: var(--gold);
  letter-spacing: 0.14em;
}

.rating strong,
.rating span {
  display: block;
}

.rating strong {
  margin-top: 0.3rem;
  color: var(--gold);
  font-size: 1.55rem;
}

.rating span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.section {
  padding: clamp(78px, 8vw, 118px) 0;
}

.how-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(214, 176, 108, 0.12), transparent 24%),
    linear-gradient(180deg, var(--paper), #fffaf3 52%, var(--paper));
}

.section-heading {
  max-width: 820px;
  margin: 0 0 2.5rem;
}

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

.section-heading h2,
.prototype-copy h2,
.benefits-title h2,
.preorder-card h2,
.waitlist-card h2,
.features-section h2,
.contact-panel h2 {
  margin: 0.55rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.06;
  text-wrap: balance;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(204, 188, 169, 0.72);
  background: rgba(255, 250, 243, 0.76);
  box-shadow: var(--shadow-soft);
}

.steps-grid article {
  position: relative;
  min-height: 230px;
  padding: clamp(1.65rem, 3vw, 2.4rem);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 250, 243, 0.12));
  transition: transform 260ms var(--ease-out), background 260ms ease;
}

.steps-grid article:hover {
  z-index: 1;
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-6px);
}

.steps-grid article + article {
  border-left: 1px solid var(--line);
}

.step-number {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(7, 6, 4, 0.16);
}

.steps-grid svg {
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  fill: none;
  stroke: var(--black);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.steps-grid h3,
.benefits-grid h3,
.feature-cards h3,
.trust-grid span {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
}

.steps-grid p,
.benefits-grid p,
.feature-cards p,
.trust-grid p,
.waitlist-card p,
.preorder-card p,
.contact-panel p,
.faq-list p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.prototype-section {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 8vw, 122px) 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(214, 176, 108, 0.18), transparent 28%),
    radial-gradient(circle at 20% 92%, rgba(214, 140, 136, 0.12), transparent 24%),
    linear-gradient(180deg, #0b0907, #15120e);
  color: #fff;
}

.prototype-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 86px 100%;
  opacity: 0.45;
  pointer-events: none;
}

.prototype-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.prototype-copy ul {
  margin: 1.6rem 0 2rem;
  padding: 0;
  list-style: none;
}

.prototype-copy li {
  position: relative;
  margin: 0.72rem 0;
  padding-left: 1.6rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.prototype-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.prototype-video {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 0;
  background: #000;
  cursor: pointer;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), border-color 300ms ease;
}

.prototype-video:hover {
  border-color: rgba(214, 176, 108, 0.62);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.56);
  transform: translateY(-6px) scale(1.006);
}

.prototype-video img {
  width: 100%;
  transition: transform 700ms var(--ease-out), opacity 300ms ease;
}

.prototype-video:hover img {
  transform: scale(1.025);
}

.play-disc {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease-out), background 220ms ease;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.08);
}

.prototype-video:hover .play-disc {
  background: rgba(214, 140, 136, 0.45);
  transform: translate(-50%, -50%) scale(1.08);
}

.play-disc::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 23px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid #fff;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.thumb-row img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  opacity: 0.82;
  transition: transform 220ms var(--ease-out), opacity 220ms ease, border-color 220ms ease;
}

.thumb-row img:hover {
  border-color: rgba(214, 176, 108, 0.7);
  opacity: 1;
  transform: translateY(-4px);
}

.benefits-section {
  padding: clamp(70px, 7vw, 96px) 0;
  background:
    linear-gradient(180deg, var(--paper), #fffaf3);
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(4, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
  align-items: start;
}

.benefits-grid article {
  min-height: 184px;
  padding: 1.15rem 0 0;
  border-top: 1px solid rgba(204, 188, 169, 0.85);
  transition: transform 220ms var(--ease-out), border-color 220ms ease;
}

.benefits-grid article:hover {
  border-color: var(--pink-dark);
  transform: translateY(-5px);
}

.benefits-grid svg {
  width: 38px;
  height: 38px;
  margin-bottom: 0.8rem;
  fill: none;
  stroke: var(--pink-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.conversion-section {
  padding: 0 0 clamp(78px, 7vw, 112px);
  background: linear-gradient(180deg, #fffaf3, var(--paper));
}

.conversion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 382px;
  box-shadow: var(--shadow-lift);
}

.preorder-card,
.waitlist-card {
  position: relative;
  min-height: 382px;
  padding: clamp(2rem, 4.2vw, 4rem);
  overflow: hidden;
}

.preorder-card {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  align-items: center;
  gap: 2rem;
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, #b96765, #d99793 58%, #e0b1aa);
  color: #fff;
}

.preorder-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.preorder-card img {
  width: 100%;
  max-width: 250px;
  transform: rotate(-10deg);
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.32));
  transition: transform 500ms var(--ease-out), filter 500ms var(--ease-out);
}

.preorder-card:hover img {
  transform: rotate(-7deg) translateY(-8px);
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.36));
}

.preorder-card .section-label {
  color: rgba(255, 255, 255, 0.74);
}

.preorder-card p,
.preorder-card .form-note,
.preorder-card .status-message {
  color: rgba(255, 255, 255, 0.85);
}

.preorder-card form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

label {
  display: grid;
  gap: 0.42rem;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.72rem 0.85rem;
  background: #fff;
  color: var(--text);
  letter-spacing: 0;
  text-transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

input:hover {
  border-color: #c5ae98;
}

input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(214, 176, 108, 0.16);
}

.waitlist-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(248, 244, 235, 0.92)),
    #f8f4eb;
}

.waitlist-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: end;
  margin-top: 1rem;
}

.referral-output {
  margin-top: 1rem;
}

.copy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px;
  gap: 0.5rem;
  margin-top: 0.42rem;
}

.icon-button {
  border: 1px solid var(--pink-dark);
  border-radius: 3px;
  background: var(--pink);
  color: #fff;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.2rem;
}

.rank-grid > div {
  border-left: 1px solid var(--line);
  padding: 0 1rem;
}

.rank-grid > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.rank-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rank-grid strong {
  display: block;
  margin-top: 0.28rem;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
}

.progress-track {
  height: 13px;
  overflow: hidden;
  border-radius: 999px;
  margin-top: 1.1rem;
  background: #e4d6c8;
}

.progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #bd6c6a, #e0aaa5);
  transition: width 260ms ease;
}

.reward-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.status-message {
  margin: 0;
  font-size: 0.84rem;
}

.status-message:not(:empty) {
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
}

.features-section {
  background: var(--paper);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.7rem;
}

.feature-cards article {
  border: 1px solid rgba(204, 188, 169, 0.9);
  border-radius: 8px;
  overflow: hidden;
  background: #fffaf3;
  box-shadow: 0 12px 34px rgba(64, 43, 31, 0.08);
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 280ms ease;
}

.feature-cards article:hover {
  border-color: rgba(189, 108, 106, 0.5);
  box-shadow: 0 24px 58px rgba(64, 43, 31, 0.16);
  transform: translateY(-8px);
}

.feature-cards img {
  width: 100%;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.feature-cards article:hover img {
  transform: scale(1.045);
}

.feature-cards h3,
.feature-cards p {
  padding-inline: 1rem;
}

.feature-cards h3 {
  margin-top: 0.85rem;
}

.feature-cards p {
  margin-bottom: 1rem;
}

.trust-strip {
  background:
    linear-gradient(90deg, rgba(214, 176, 108, 0.11), transparent 30%, rgba(214, 140, 136, 0.11)),
    linear-gradient(90deg, #11100d, #1d1711);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.4rem 0;
}

.trust-grid article {
  display: grid;
  gap: 0.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 1.2rem;
  transition: transform 220ms var(--ease-out);
}

.trust-grid article:hover {
  transform: translateY(-3px);
}

.trust-grid article:first-child {
  border-left: 0;
}

.trust-grid span {
  color: #fff;
}

.trust-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.faq-contact {
  background:
    radial-gradient(circle at 88% 12%, rgba(214, 140, 136, 0.1), transparent 22%),
    var(--paper);
  padding: clamp(72px, 7vw, 100px) 0;
}

.faq-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
}

.faq-list h2 {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-weight: 500;
}

details {
  border: 1px solid rgba(204, 188, 169, 0.9);
  border-radius: 6px;
  background: #fffaf3;
  box-shadow: 0 10px 28px rgba(64, 43, 31, 0.06);
  transition: border-color 180ms ease, background 180ms ease;
}

details[open] {
  border-color: rgba(189, 108, 106, 0.42);
  background: #fffdfa;
}

details + details {
  margin-top: 0.35rem;
}

summary {
  cursor: pointer;
  padding: 0.55rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--pink-dark);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 0.8rem 0.75rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr minmax(190px, 0.8fr);
  gap: 1.5rem;
  align-items: center;
  border: 1px solid rgba(204, 188, 169, 0.9);
  border-radius: 8px;
  padding: clamp(1.3rem, 2.4vw, 2rem);
  background: #fffaf3;
  box-shadow: var(--shadow-soft);
}

.contact-panel a {
  color: var(--pink-dark);
  font-weight: 800;
}

.contact-panel img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(64, 43, 31, 0.15);
}

.site-footer {
  background:
    radial-gradient(circle at 80% 18%, rgba(214, 176, 108, 0.1), transparent 24%),
    #080705;
  color: #fff;
  padding: clamp(2.4rem, 5vw, 4.2rem) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.site-footer p,
.site-footer a,
.site-footer small {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  max-width: 260px;
  margin: 0.6rem 0 0;
  font-size: 0.84rem;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
}

.footer-subscribe label {
  gap: 0.7rem;
}

.subscribe-row {
  display: grid;
  grid-template-columns: 1fr auto;
}

.subscribe-row .button {
  min-height: 44px;
  border-radius: 0 3px 3px 0;
}

.subscribe-row input {
  border-radius: 3px 0 0 3px;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(7, 6, 4, 0.78);
  backdrop-filter: blur(14px);
}

.demo-modal[hidden] {
  display: none;
}

.demo-dialog {
  width: min(900px, 100%);
  border: 1px solid rgba(214, 176, 108, 0.25);
  border-radius: 8px;
  padding: clamp(1rem, 2.4vw, 1.6rem);
  background: var(--paper);
  box-shadow: var(--shadow);
  animation: modalIn 260ms var(--ease-out);
}

.demo-dialog h2 {
  margin: 0.6rem 0 0.8rem;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
}

.modal-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  background: #000;
}

.modal-close {
  border: 0;
  background: transparent;
  color: var(--pink-dark);
  cursor: pointer;
  font-weight: 900;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(66px, 8vw, 116px) 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(214, 176, 108, 0.14), transparent 28%),
    linear-gradient(180deg, #0b0907, #17120f);
  color: #fff;
}

.page-hero-grid,
.about-grid,
.values-grid {
  display: grid;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.page-hero-grid,
.about-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.6vw, 5rem);
  font-weight: 500;
  line-height: 1;
  text-wrap: balance;
}

.page-hero p,
.section-copy p,
.contact-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.page-hero picture,
.about-grid picture {
  overflow: hidden;
  border: 1px solid rgba(214, 176, 108, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero img,
.about-grid img {
  width: 100%;
  transition: transform 800ms var(--ease-out);
}

.page-hero picture:hover img,
.about-grid picture:hover img {
  transform: scale(1.035);
}

.about-grid .section-copy p {
  color: var(--muted);
}

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

.values-grid article,
.contact-band {
  border: 1px solid rgba(204, 188, 169, 0.9);
  border-radius: 8px;
  padding: clamp(1.4rem, 2.8vw, 2.2rem);
  background: #fffaf3;
  box-shadow: var(--shadow-soft);
}

.values-grid h2,
.contact-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  font-weight: 500;
}

.values-grid p {
  color: var(--muted);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.contact-band p {
  color: var(--muted);
}

.reveal,
.reveal-group > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
}

.reveal.is-visible,
.reveal-group.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group.is-visible > *:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-group.is-visible > *:nth-child(3) {
  transition-delay: 150ms;
}

.reveal-group.is-visible > *:nth-child(4) {
  transition-delay: 220ms;
}

.reveal-group.is-visible > *:nth-child(5) {
  transition-delay: 290ms;
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(-0.35deg);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.9rem 0;
  }

  .nav .button {
    display: none;
  }

  .hero-grid,
  .prototype-grid,
  .conversion-grid,
  .faq-contact-grid,
  .contact-panel,
  .footer-grid,
  .page-hero-grid,
  .about-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
  }

  .testimonial-grid,
  .benefits-grid,
  .feature-cards,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-label,
  .rating {
    grid-column: 1 / -1;
  }

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

  .steps-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .hero-grid {
    padding-top: 46px;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 12vw, 4.1rem);
  }

  .hero-copy h1 em {
    white-space: normal;
  }

  .hero-actions,
  .hero-proof,
  .waitlist-form,
  .testimonial-grid,
  .benefits-grid,
  .feature-cards,
  .trust-grid,
  .rank-grid,
  .reward-row {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: grid;
  }

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

  .preorder-card,
  .waitlist-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.3rem;
  }

  .thumb-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-band {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal,
  .reveal-group > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
