/* PIN-UP Landing — site5 (Prism Noir) */

:root {
  --bg: #140a1c;
  --surface: #1f1228;
  --surface-2: #2a1834;
  --ink: #faf5ff;
  --muted: #a1a1aa;
  --line: rgba(250, 245, 255, 0.1);
  --violet: #a855f7;
  --violet-dim: rgba(168, 85, 247, 0.14);
  --rose: #ec4899;
  --rose-dim: rgba(236, 72, 153, 0.12);
  --radius: 4px;
  --container: 1040px;
  --header-h: 68px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Karla", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  font-size: 1.03rem;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(168, 85, 247, 0.08), transparent),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol,
h1,
h2,
h3,
p {
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--violet);
  color: #140a1c;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(20, 10, 28, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 36px;
  width: auto;
}

.header__actions {
  display: flex;
  gap: 8px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.78rem;
}

.btn--lg {
  padding: 14px 30px;
  font-size: 0.9rem;
}

.btn--violet {
  background: linear-gradient(135deg, var(--violet), #7c3aed);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn--rose {
  background: linear-gradient(135deg, var(--rose), #db2777);
  color: #fff;
}

/* Framed hero */

.frame-hero {
  padding: 40px 0 32px;
}

.frame-hero__box {
  position: relative;
  padding: 3px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, var(--violet), var(--rose), #8b5cf6);
}

.frame-hero__inner {
  position: relative;
  padding: 48px 40px;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.frame-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.frame-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.frame-hero__tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}

.frame-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
}

.frame-hero__lead {
  margin-top: 16px;
  color: var(--muted);
}

.frame-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.frame-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}

.frame-hero__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--violet);
}

/* Interstitial */

.inter {
  padding: 14px 0;
  background: linear-gradient(90deg, var(--violet-dim), var(--rose-dim), var(--violet-dim));
  border-block: 1px solid var(--line);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Timeline layout */

.timeline-wrap {
  padding: 48px 0 56px;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--line);
}

.timeline__node {
  position: relative;
  padding: 0 0 48px 36px;
}

.timeline__node:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--rose));
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--violet);
}

.timeline__body {
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
}

.timeline__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
}

.timeline__text {
  margin-top: 12px;
  color: var(--muted);
}

.timeline__text + .timeline__text {
  margin-top: 10px;
}

/* Grids */

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.grid2__item {
  padding: 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.grid2__item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--violet);
}

.grid2__item p,
.grid2__item ul {
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.list {
  padding-left: 16px;
}

.list li {
  margin-top: 5px;
}

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

.grid3__item {
  padding: 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.grid3__item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.grid3__item p {
  margin-top: 6px;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Table */

.table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table th,
.table td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.table th {
  background: var(--surface-2);
  color: var(--violet);
  font-weight: 600;
}

.table tbody tr:last-child td {
  border-bottom: none;
}

/* FAQ */

.faq {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.faq details {
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq p {
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.highlight {
  margin-top: 14px;
  padding: 14px 18px;
  background: var(--violet-dim);
  border-left: 3px solid var(--violet);
  font-size: 0.95rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* CTA */

.cta-final {
  margin: 0 auto 48px;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg));
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

.cta-final p {
  margin-top: 10px;
  color: var(--muted);
  max-width: 44ch;
  margin-inline: auto;
}

.cta-final .btn {
  margin-top: 20px;
}

/* Footer */

.footer {
  padding: 32px 0 40px;
  background: #0a0610;
  border-top: 1px solid var(--line);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.footer__brand img {
  height: 32px;
  width: auto;
}

.footer__copy,
.footer__disclaimer,
.cookies-note {
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .frame-hero__inner {
    padding: 32px 22px;
  }

  .timeline__node {
    padding-left: 28px;
  }

  .timeline__dot {
    width: 12px;
    height: 12px;
  }

  .timeline__body {
    padding: 18px 16px;
  }

  .grid2,
  .grid3 {
    grid-template-columns: 1fr;
  }
}
