@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-regular.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-italic.woff2") format("woff2");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #07060c;
  --bg-elev: #0e0c16;
  --ink: #f6f1f7;
  --muted: #b7a8c4;
  --faint: #8a7a98;
  --pink: #ff8fb8;
  --pink-hot: #ff6b9d;
  --blush: #ffd0e2;
  --lavender: #c4b5fd;
  --violet: #7c5cbf;
  --line: rgba(255, 182, 210, 0.16);
  --glass: rgba(12, 10, 18, 0.55);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
  color: inherit;
}

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

.grain,
.vignette {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.grain {
  z-index: 80;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette {
  z-index: 70;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(7, 6, 12, 0.45) 100%);
}

#petals {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 60;
  pointer-events: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(8, 7, 14, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(255, 143, 184, 0.45));
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  display: inline-flex;
  align-items: baseline;
}

.glitch {
  position: relative;
  display: inline-block;
  min-width: 3.55ch;
  text-align: left;
}

.glitch.is-glitching {
  animation: glitchSkew 0.35s steps(2, end) infinite;
}

.glitch.is-glitching::before,
.glitch.is-glitching::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.glitch.is-glitching::before {
  color: #ff6b9d;
  text-shadow: -2px 0 #67e8f9;
  animation: glitchTop 0.28s infinite linear alternate-reverse;
  clip-path: inset(0 0 58% 0);
}

.glitch.is-glitching::after {
  color: #c4b5fd;
  text-shadow: 2px 0 #fb7185;
  animation: glitchBot 0.32s infinite linear alternate-reverse;
  clip-path: inset(52% 0 0 0);
}

@keyframes glitchSkew {
  0% { transform: skew(0deg); }
  20% { transform: skew(-8deg); }
  40% { transform: skew(6deg); }
  60% { transform: skew(-3deg); }
  80% { transform: translateX(2px); }
  100% { transform: skew(0deg); }
}

@keyframes glitchTop {
  0% { transform: translate(-3px, -1px); }
  100% { transform: translate(3px, 1px); }
}

@keyframes glitchBot {
  0% { transform: translate(3px, 1px); }
  100% { transform: translate(-3px, -1px); }
}

.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
}

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

.menu-toggle {
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
}

.btn-primary {
  background: linear-gradient(180deg, #ffb3cd 0%, #ff7eab 100%);
  color: #2a1020;
  box-shadow: 0 8px 28px rgba(255, 126, 171, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(255, 126, 171, 0.4);
}

.btn-ghost {
  border: 1px solid rgba(255, 182, 210, 0.28);
  color: var(--blush);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: rgba(255, 182, 210, 0.55);
  background: rgba(255, 182, 210, 0.08);
}

.btn-lg {
  padding: 15px 28px;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  justify-self: end;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--blush);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 36px) 20px 80px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 32s ease-in-out infinite alternate;
  filter: saturate(1.08) contrast(1.05);
}

@keyframes kenburns {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.16) translate3d(-1.5%, -1%, 0); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 6, 12, 0.55) 0%, rgba(7, 6, 12, 0.28) 35%, rgba(7, 6, 12, 0.55) 70%, var(--bg) 100%),
    radial-gradient(ellipse at 50% 80%, rgba(124, 58, 237, 0.18), transparent 55%);
}

.hero-content {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 182, 210, 0.28);
  background: rgba(12, 10, 20, 0.45);
  backdrop-filter: blur(12px);
  color: var(--blush);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7.2vw, 6.4rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(120deg, #ffe4f0 0%, #ff8fb8 45%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-glitch {
  min-width: 5.1ch;
  text-align: left;
  vertical-align: baseline;
}

.hero-glitch.is-glitching {
  -webkit-background-clip: unset;
  background-clip: unset;
  background: none;
  color: #ffd0e2;
}

.lede,
.sub {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  max-width: 560px;
  margin: 0 auto;
}

.sub {
  margin-top: 8px;
  color: #d7cbe3;
}

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

.section {
  position: relative;
  z-index: 2;
  padding: 110px 20px;
}

.wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.kicker {
  color: var(--pink);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin-bottom: 14px;
}

.section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 18px;
}

.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 640px;
}

.about {
  padding-top: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.about-copy p + p {
  margin-top: 16px;
}

.planned-note {
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--lavender);
  font-size: 0.82rem;
}

.about-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 6, 12, 0.35));
}

.features-head {
  text-align: center;
  margin-bottom: 48px;
}

.features-head .section-lead {
  margin: 0 auto;
}

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

.feature {
  position: relative;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(22, 16, 32, 0.9), rgba(12, 10, 18, 0.92));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 182, 210, 0.35);
  box-shadow: 0 20px 50px rgba(80, 20, 60, 0.25);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(255, 143, 184, 0.1);
  border: 1px solid rgba(255, 182, 210, 0.16);
  color: var(--blush);
}

.feature h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
  font-size: 0.98rem;
}

.status {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--lavender);
}

.status.dev {
  color: var(--blush);
  border-color: rgba(255, 143, 184, 0.35);
  background: rgba(255, 143, 184, 0.08);
}

.special {
  padding: 40px 20px 100px;
}

.special-inner {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
  padding: 72px 28px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.special-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) saturate(1.1);
}

.special-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 8, 20, 0.2), rgba(12, 8, 20, 0.55));
}

.special-inner h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-style: italic;
}

.faq-list {
  width: min(760px, 100%);
  margin: 36px auto 0;
  display: grid;
  gap: 10px;
}

.faq details {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(14, 12, 22, 0.7);
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-weight: 500;
}

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

.faq summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--blush);
  border-bottom: 1.5px solid var(--blush);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}

.faq details[open] summary::after {
  transform: rotate(225deg);
}

.faq details p {
  padding: 0 22px 20px;
  color: var(--muted);
}

.final {
  padding: 0 20px 20px;
}

.final-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: 520px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
}

.final-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 12, 0.25), rgba(7, 6, 12, 0.62)),
    radial-gradient(ellipse at 30% 40%, rgba(255, 143, 184, 0.12), transparent 50%);
}

.final-copy {
  position: relative;
  z-index: 1;
  padding: 48px 24px;
}

.final-copy h2 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin-bottom: 10px;
}

.final-copy p {
  font-size: 1.2rem;
  color: #f0d6e4;
  margin-bottom: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.footer {
  padding: 56px 20px 28px;
  position: relative;
  z-index: 2;
}

.footer-top {
  width: min(1120px, 100%);
  margin: 0 auto 32px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  align-items: end;
}

.footer-brand p {
  color: var(--muted);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--blush);
}

.footer-bottom {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.legal {
  padding: calc(var(--nav-h) + 60px) 20px 80px;
}

.legal .wrap {
  width: min(760px, 100%);
}

.legal h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 12px;
}

.legal .meta {
  color: var(--faint);
  margin-bottom: 28px;
}

.legal h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  margin: 28px 0 8px;
}

.legal p,
.legal li {
  color: var(--muted);
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.9s var(--ease) forwards;
}

.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.18s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.42s; }
.d5 { animation-delay: 0.55s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.inview {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.inview.show {
  opacity: 1;
  transform: none;
}

@media (max-width: 860px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    padding: 22px 24px 28px;
    background: rgba(8, 7, 14, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    gap: 18px;
    align-items: flex-start;
  }

  .menu-toggle {
    display: flex;
  }

  .about-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg img,
  .glitch.is-glitching,
  .glitch.is-glitching::before,
  .glitch.is-glitching::after,
  .reveal,
  .badge-dot {
    animation: none !important;
  }
  .inview {
    opacity: 1;
    transform: none;
  }
}
