:root {
  --bg: #120814;
  --bg-2: #1d0d21;
  --card: rgba(255, 255, 255, .09);
  --card-solid: #211025;
  --text: #fff6fb;
  --muted: rgba(255, 246, 251, .72);
  --line: rgba(255, 255, 255, .14);
  --gold: #f9d98f;
  --pink: #ff8dc7;
  --rose: #ff5ca8;
  --cream: #fff0dd;
  --shadow: 0 24px 90px rgba(0, 0, 0, .35);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 141, 199, .20), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(249, 217, 143, .18), transparent 24rem),
    var(--bg);
  line-height: 1.6;
}

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

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

code {
  font-size: .9em;
  background: rgba(255,255,255,.10);
  border: 1px solid var(--line);
  padding: .15rem .4rem;
  border-radius: .5rem;
}

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

.section {
  padding: 92px 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(18, 8, 20, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #1b0a1c;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  font-family: "Playfair Display", serif;
  font-weight: 800;
  letter-spacing: -.04em;
  box-shadow: 0 14px 34px rgba(255, 141, 199, .22);
}

.brand-mark.large {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  font-size: 1.5rem;
  margin: 0 auto 18px;
}

.brand strong,
.site-footer strong {
  display: block;
  line-height: 1.1;
  font-weight: 800;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  color: rgba(255, 246, 251, .82);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .94rem;
}

.site-nav a:hover,
.site-nav .nav-cta {
  color: var(--text);
  background: rgba(255,255,255,.09);
}

.nav-cta {
  border: 1px solid var(--line);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 4px;
  background: currentColor;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .8;
  background:
    linear-gradient(110deg, rgba(255, 92, 168, .08), transparent 54%),
    radial-gradient(circle at 72% 46%, rgba(255, 255, 255, .09), transparent 18rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .86fr);
  gap: 68px;
  align-items: center;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: -.045em;
}

h1 {
  font-size: clamp(3.35rem, 7vw, 7.2rem);
  max-width: 860px;
}

h2 {
  font-size: clamp(2.35rem, 4.6vw, 4.75rem);
}

h3 {
  font-size: 1.15rem;
}

.hero-lead,
.section-heading p,
.form-copy p,
.experience-copy p,
.cta-card p,
.site-footer p {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-lead {
  max-width: 680px;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.hero-actions.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -.01em;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  cursor: pointer;
}

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

.button.primary {
  color: #1b0a1c;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  box-shadow: 0 16px 40px rgba(255, 141, 199, .22);
}

.button.ghost {
  color: var(--text);
  background: rgba(255,255,255,.08);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  overflow: hidden;
}

.hero-proof div {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
}

.hero-proof div:last-child { border-right: 0; }

.hero-proof strong {
  display: block;
  color: var(--cream);
  font-size: 1.18rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: .88rem;
}

.hero-card {
  position: relative;
  min-height: 610px;
}

.feature-card {
  position: relative;
  z-index: 2;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: 34px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04)),
    linear-gradient(135deg, rgba(255, 92, 168, .20), rgba(249, 217, 143, .08));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -26% 10%;
  height: 270px;
  background: radial-gradient(circle, rgba(249, 217, 143, .30), transparent 68%);
  filter: blur(10px);
}

.pill {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid var(--line);
  color: var(--gold);
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.feature-card h2 {
  margin-top: 24px;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
}

.feature-card p {
  color: var(--muted);
  max-width: 430px;
}

.mini-gallery {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  z-index: 3;
}

.nail-chip {
  height: 128px;
  border-radius: 90px 90px 36px 36px;
  background: linear-gradient(180deg, var(--cream), var(--pink));
  box-shadow: inset 0 4px 14px rgba(255,255,255,.36), 0 24px 40px rgba(0,0,0,.22);
}

.chip-1 { background: linear-gradient(180deg, #fff1ea, #ff8dc7); }
.chip-2 { background: linear-gradient(180deg, #ffe8f4, #c98dff); transform: translateY(30px); }
.chip-3 { background: linear-gradient(180deg, #fff7d6, #f9d98f); }
.chip-4 { background: linear-gradient(180deg, #ffdce9, #ff5ca8); transform: translateY(38px); }

.polish-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .84;
}

.orb-one {
  width: 190px;
  height: 190px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--pink) 28%, transparent 70%);
  right: -26px;
  top: 18px;
}

.orb-two {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 35% 35%, #fff, var(--gold) 35%, transparent 72%);
  left: -18px;
  bottom: 78px;
}

.floating-card {
  position: absolute;
  z-index: 5;
  left: -34px;
  bottom: 66px;
  width: min(290px, 90%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(18, 8, 20, .86);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.floating-card span {
  display: block;
  color: var(--muted);
  font-size: .92rem;
}

.strip {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.045);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card,
.service-list,
.lux-form,
.policy-card,
details,
.cta-card,
.image-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.product-card {
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

.product-art {
  position: relative;
  min-height: 190px;
  display: grid;
  place-items: start end;
  padding: 18px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,.38), transparent 10rem),
    linear-gradient(135deg, rgba(255, 141, 199, .34), rgba(249, 217, 143, .16));
}

.product-art::after {
  content: "";
  position: absolute;
  width: 82px;
  height: 160px;
  left: 50%;
  top: 28px;
  transform: translateX(-50%) rotate(12deg);
  border-radius: 70px 70px 28px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,141,199,.92));
  box-shadow: 36px 16px 0 rgba(249,217,143,.85), -34px 22px 0 rgba(255,92,168,.55);
}

.product-art span {
  position: relative;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18,8,20,.70);
  font-size: .76rem;
  font-weight: 900;
  color: var(--gold);
}

.art-2::after { transform: translateX(-50%) rotate(-8deg); background: linear-gradient(180deg, #fff, #d3b0ff); }
.art-3::after { background: linear-gradient(180deg, #fff9e8, #f9d98f); }
.art-4::after { transform: translateX(-50%) rotate(4deg); background: linear-gradient(180deg, #fff1fa, #ff5ca8); }

.product-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  flex: 1;
  padding: 22px;
}

.product-body p {
  color: var(--muted);
}

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

.product-footer strong {
  color: var(--gold);
  font-size: 1.25rem;
}

.text-link {
  color: var(--text);
  border-bottom: 1px solid var(--pink);
  font-weight: 900;
}

.muted {
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.services-layout,
.experience-grid,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
}

.reverse {
  grid-template-columns: minmax(360px, 1fr) minmax(0, .92fr);
}

.reverse .form-copy { order: 2; }
.reverse .lux-form { order: 1; }

.service-list {
  padding: 18px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row span {
  color: var(--muted);
  font-size: .92rem;
}

.service-row strong {
  color: var(--gold);
}

.image-panel {
  position: relative;
  min-height: 520px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 12rem),
    linear-gradient(135deg, rgba(249,217,143,.20), rgba(255,92,168,.18));
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 420px;
  left: 50%;
  top: 42px;
  transform: translateX(-50%) rotate(-16deg);
  border-radius: 120px 120px 40px 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,141,199,.78));
  box-shadow: 78px 58px 0 rgba(249,217,143,.52), -84px 74px 0 rgba(255,92,168,.45);
}

.image-card {
  position: absolute;
  z-index: 2;
  width: 260px;
  padding: 18px;
  background: rgba(18,8,20,.74);
  backdrop-filter: blur(12px);
}

.image-card span {
  color: var(--gold);
  font-weight: 900;
}

.image-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.top-card { top: 26px; left: 24px; }
.bottom-card { right: 24px; bottom: 24px; }

.steps {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.steps div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.06);
}

.steps strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.steps p {
  margin: 6px 0 0;
}

.lux-form {
  padding: 24px;
  background: rgba(255,255,255,.09);
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255,246,251,.86);
  font-weight: 800;
  font-size: .92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(18, 8, 20, .62);
  color: var(--text);
  padding: 14px 14px;
  font: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255,141,199,.78);
  box-shadow: 0 0 0 4px rgba(255,141,199,.12);
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,246,251,.45);
}

input[type=file] {
  padding: 12px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-note {
  color: var(--muted);
  font-size: .84rem;
  margin: 12px 0 0;
  text-align: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  color: var(--muted);
  padding-left: 30px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.policy-card {
  padding: 18px;
  margin-top: 24px;
}

.policy-card span {
  display: block;
  color: var(--muted);
}

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

details {
  padding: 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--cream);
}

details p {
  color: var(--muted);
  margin-bottom: 0;
}

.final-cta {
  padding-top: 40px;
}

.cta-card {
  padding: clamp(34px, 6vw, 70px);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(249,217,143,.18), transparent 30rem),
    rgba(255,255,255,.08);
}

.cta-card p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  padding: 54px 0 28px;
  background: #0b050d;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 28px;
}

.site-footer a {
  display: block;
  color: var(--muted);
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 30px;
  color: rgba(255,246,251,.52);
  border-top: 1px solid var(--line);
  font-size: .9rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.thank-you-body {
  min-height: 100vh;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.thank-you-card {
  width: min(680px, 100%);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  padding: clamp(32px, 7vw, 70px);
}

.thank-you-card h1 {
  font-size: clamp(2.7rem, 7vw, 5.3rem);
}

.thank-you-card p {
  color: var(--muted);
}

@media (max-width: 1020px) {
  .hero-grid,
  .services-layout,
  .experience-grid,
  .form-layout,
  .reverse {
    grid-template-columns: 1fr;
  }

  .reverse .form-copy,
  .reverse .lux-form {
    order: initial;
  }

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

  .hero-card {
    min-height: 560px;
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .section {
    padding: 70px 0;
  }

  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(18,8,20,.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 14px;
  }

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

  .hero-proof,
  .field-pair,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

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

  .hero-card {
    min-height: 490px;
  }

  .feature-card {
    min-height: 450px;
    padding: 24px;
  }

  .mini-gallery {
    gap: 8px;
    left: 18px;
    right: 18px;
  }

  .nail-chip {
    height: 105px;
  }

  .floating-card {
    left: 10px;
    bottom: 34px;
  }

  .image-panel {
    min-height: 460px;
  }

  .image-card {
    width: calc(100% - 44px);
  }

  .top-card,
  .bottom-card {
    left: 22px;
    right: 22px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .button:hover { transform: none; }
}

/* Business policy upgrade */
.policy-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(249,217,143,.12), transparent 26rem),
    radial-gradient(circle at 85% 20%, rgba(255,92,168,.10), transparent 22rem);
}

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

.policy-item {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 230px;
  box-shadow: 0 18px 60px rgba(0,0,0,.16);
}

.policy-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  color: #1b0a1c;
  font-weight: 900;
  margin-bottom: 18px;
}

.policy-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 16px 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: var(--pink);
}

.checkbox-line span {
  display: block;
}

@media (max-width: 1020px) {
  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }
}
