:root {
  --bg: #fff4f8;
  --ink: #2a1f33;
  --muted: #8a758f;
  --accent: #ff4f8a;
  --accent-deep: #e8326e;
  --sky: #4eb4f0;
  --mint: #3ecf9a;
  --card: #ffffff;
  --line: #f0cfe0;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, #ffd0e4 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, #c8ebff 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, #d4ffe8 0%, transparent 45%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9rem 1.5rem;
  backdrop-filter: blur(14px);
  background: rgba(255, 244, 248, 0.82);
  border-bottom: 1px solid rgba(240, 207, 224, 0.7);
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 1.1rem;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
}

.btn-wide {
  width: 100%;
  margin-top: 0.5rem;
}

.checkout-banner {
  position: relative;
  z-index: 20;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 10px 28px rgba(42, 31, 51, 0.08);
}

.checkout-banner-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.checkout-banner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent-deep, var(--accent));
  margin-bottom: 0.35rem;
}

.checkout-banner p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.45;
}

.text-link {
  font-weight: 600;
  color: var(--sky);
  border-bottom: 1px solid transparent;
}

.text-link:hover {
  border-bottom-color: var(--sky);
}

/* —— Hero: one composition, brand-first —— */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: grid;
  grid-template-columns:
    minmax(1rem, 1fr)
    minmax(0, 1.05fr)
    minmax(0, 0.95fr)
    minmax(1rem, 1fr);
  align-items: center;
  column-gap: 1.75rem;
  padding: 3.5rem 0 3rem;
  overflow: hidden;
}

.hero-plane {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 40%, var(--bg) 96%),
    linear-gradient(115deg, #ff8fb8 0%, #6ec6ff 42%, #7aefc2 78%, #ffc48a 100%);
  background-size: 100% 100%, 200% 200%;
  animation: wash 18s ease-in-out infinite alternate;
}

@keyframes wash {
  from { background-position: 0 0, 0% 40%; }
  to { background-position: 0 0, 80% 60%; }
}

.hero-inner {
  grid-column: 2;
  max-width: 540px;
  justify-self: end;
  animation: rise 0.9s ease both;
  z-index: 1;
}

.hero-shot {
  position: relative;
  z-index: 1;
  grid-column: 3;
  justify-self: start;
  width: min(520px, 100%);
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 28px 70px rgba(42, 31, 51, 0.22),
    0 8px 24px rgba(255, 79, 138, 0.12);
  transform: perspective(1200px) rotateY(-6deg) rotateX(4deg);
  animation: floatIn 1s ease both;
  transform-origin: center center;
}

.hero-shot::before {
  content: "";
  position: absolute;
  inset: 10% -8% -8% 12%;
  background:
    radial-gradient(circle at 60% 40%, rgba(255, 79, 138, 0.28), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(78, 180, 240, 0.22), transparent 50%);
  filter: blur(22px);
  z-index: -1;
  pointer-events: none;
}

.hero-shot img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: perspective(1200px) rotateY(-10deg) rotateX(8deg) translateY(24px);
  }
  to {
    opacity: 1;
    transform: perspective(1200px) rotateY(-6deg) rotateX(4deg) translateY(0);
  }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.brand-mark {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #fff;
  text-shadow: 0 2px 24px rgba(42, 31, 51, 0.18);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #1f1726;
}

.lede {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: 1.08rem;
  color: var(--ink);
  opacity: 0.88;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
}

.hero-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.section {
  padding: 4.5rem 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
}

.section#look {
  max-width: 1280px;
}

.section.band {
  max-width: none;
  background: rgba(255, 255, 255, 0.55);
  border-block: 1px solid var(--line);
}

.section.band > * {
  max-width: 1040px;
  margin-inline: auto;
}

.section-head {
  margin-bottom: 2.25rem;
  max-width: 36rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-lede {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 36rem;
}

.look-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.look-card {
  margin: 0;
}

.look-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 42px rgba(42, 31, 51, 0.14);
  background: #1a1520;
}

.look-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.85rem;
}

.look-card strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
}

.look-card span {
  font-size: 0.9rem;
  color: var(--muted);
}

.feature-rail {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-rail article {
  padding: 0;
  background: none;
  border: none;
}

.feature-rail h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.feature-rail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--sky);
  line-height: 1;
}

.steps h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.pricing {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin: 0 auto;
}

.pricing-card {
  text-align: center;
  padding: 1.5rem 1.35rem 1.35rem;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
}

.pricing-card-featured {
  border-color: rgba(255, 107, 157, 0.55);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(255, 79, 138, 0.12);
}

.price {
  margin: 0.4rem 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.75rem;
  letter-spacing: -0.04em;
}

.price span {
  color: var(--accent);
}

.price-note {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  text-align: left;
}

.price-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.btn-outline {
  background: transparent;
  color: var(--accent-deep, var(--accent));
  border: 2px solid var(--accent);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 107, 157, 0.1);
  filter: none;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
  font-size: 1.02rem;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 0.55rem 0 0.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.finale {
  text-align: center;
  padding: 4.5rem 1.5rem 5rem;
}

.finale h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
}

.finale p {
  margin: 0 0 1.4rem;
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding: 1.4rem 1.5rem 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 820px) {
  .nav {
    display: none;
  }

  .feature-rail {
    grid-template-columns: 1fr;
  }

  .look-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2.5rem 1.25rem;
  }

  .hero-inner,
  .hero-shot {
    grid-column: 1;
    justify-self: center;
    max-width: none;
  }

  .hero-shot {
    width: min(360px, 92%);
    order: -1;
    transform: perspective(1000px) rotateY(-4deg) rotateX(3deg);
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-plane {
    animation: none;
  }

  .hero-shot {
    animation: none;
    transform: perspective(1200px) rotateY(-6deg) rotateX(4deg);
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
