/* ============================================================
   Fonts
   ============================================================ */

@font-face {
  font-family: 'Outfit';
  src: url('assets/fonts/Outfit-Regular.woff2') format('woff2');
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Belanosima';
  src: url('assets/fonts/Belanosima-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  font-synthesis: none;
}


/* ============================================================
   Reset & tokens
   ============================================================ */

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

:root {
  --ink:        #020514;
  --ink-soft:   #070b1e;
  --panel:      rgba(6, 10, 28, 0.72);
  --panel-hover: rgba(9, 16, 42, 0.82);
  --line:       rgba(255, 255, 255, 0.10);
  --line-soft:  rgba(255, 255, 255, 0.06);
  --font:       'Outfit', sans-serif;
  --font-title: 'Belanosima', sans-serif;
  --size-xs:    10px;
  --size-sm:    11px;
  --size-sub:   14px;
  --size-base:  15px;
  --size-title: 16px;
  --size-arrow: 18px;
  --text:       #f0edf1;
  --text-sub:   #6e7194;
  --muted:      #9a9ab0;
  --muted-dark: #686b84;
  --blue:       #1b45e8;
  --blue-soft:  rgba(31, 75, 230, 0.38);
  --amber:      #b04b24;
  --amber-soft: rgba(176, 75, 36, 0.25);
}


/* ============================================================
   Base
   ============================================================ */

body {
  color: var(--text);
  font-family: var(--font);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background: var(--ink);
}


/* ============================================================
   Background
   ============================================================ */

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #01030d 0%, #030617 100%);
}

.bg-blue {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 85% at 98% 38%, rgba(30, 73, 235, 0.34) 0%, rgba(30, 73, 235, 0.12) 34%, transparent 66%);
  animation: glowShift 18s ease-in-out infinite alternate;
}

.bg-amber {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 48% 62% at 2% 42%, rgba(176, 75, 36, 0.24) 0%, rgba(176, 75, 36, 0.10) 38%, transparent 68%);
  animation: glowShift 22s ease-in-out infinite alternate-reverse;
}

.bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.06) 45%, transparent 60%);
  transform: translateX(-120%);
  animation: sweepLight 1.55s ease-out 0.55s both;
}


/* ============================================================
   Layout
   ============================================================ */

.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 52px 24px 44px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer {
  margin-top: 40px;
  text-align: center;
  font-size: var(--size-sm);
  color: var(--muted-dark);
  letter-spacing: 1px;
  z-index: 1;
  position: relative;
}


/* ============================================================
   Profile photo
   ============================================================ */

.photo-ring {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 26px;
  flex-shrink: 0;
  padding: 2px;
  background: linear-gradient(135deg, var(--amber), var(--ink-soft) 38%, var(--blue));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.72), 0 0 28px rgba(31, 75, 230, 0.18);
  animation: photoEntry 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.72s both;
}

.photo-ring::before {
  content: '';
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, transparent, rgba(176, 75, 36, 0.34), transparent 34%, rgba(31, 75, 230, 0.48), transparent 72%);
  filter: blur(10px);
  opacity: 0;
  z-index: -1;
  animation: ringAura 1.15s ease 0.65s both;
}

.photo-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 2px solid rgba(2, 5, 20, 0.92);
}


/* ============================================================
   Logo
   ============================================================ */

.logo-img {
  width: 205px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(31, 75, 230, 0.28));
  margin-bottom: 36px;
  animation: logoEntry 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}


/* ============================================================
   Link list
   ============================================================ */

.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.links > * {
  animation: fadeUp 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.links > *:nth-child(1) { animation-delay: 1.12s; }
.links > *:nth-child(2) { animation-delay: 1.22s; }
.links > *:nth-child(3) { animation-delay: 1.32s; }
.links > *:nth-child(4) { animation-delay: 1.42s; }
.links > *:nth-child(5) { animation-delay: 1.52s; }
.links > *:nth-child(6) { animation-delay: 1.62s; }
.links > *:nth-child(7) { animation-delay: 1.72s; }
.links > *:nth-child(8) { animation-delay: 1.82s; }
.links > *:nth-child(9) { animation-delay: 1.92s; }

.section-label {
  font-size: var(--size-xs);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 4px;
  margin-top: 8px;
  padding-left: 2px;
}

.section-label--spaced {
  margin-top: 16px;
}


/* ============================================================
   Link button
   ============================================================ */

.link-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 18px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  color: var(--text);
  text-decoration: none;
  font-size: var(--size-base);
  font-weight: 500;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.link-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(176, 75, 36, 0.10), transparent 32%, rgba(31, 75, 230, 0.12));
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.link-btn:hover {
  background: var(--panel-hover);
  border-color: var(--line);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32), 0 0 18px rgba(31, 75, 230, 0.10);
}

.link-btn:hover::before { opacity: 1; }

.link-row {
  display: flex;
  gap: 10px;
  width: 100%;
}

.link-btn--plain {
  flex: 1;
  min-width: 0;
  justify-content: flex-start;
  text-align: left;
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.icon.sc-icon,
.icon.scr-icon,
.icon.ig-icon,
.icon.mail-icon,
.icon.prices-icon {
  background: linear-gradient(135deg,
              rgba(176, 75, 36, 0.85) 0%,
              rgba(7, 11, 30, 0.96) 30%,
              rgba(7, 11, 30, 0.96) 60%,
              rgba(31, 75, 230, 0.92) 100%);
}

.link-text {
  flex: 1;
  font-family: var(--font-title);
  font-size: var(--size-title);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.link-sub {
  font-family: var(--font);
  font-size: var(--size-sub);
  color: var(--text-sub);
  font-weight: 300;
  display: block;
  margin-top: 1px;
  text-transform: none;
  letter-spacing: 0;
}

.arrow {
  color: var(--muted-dark);
  font-size: var(--size-arrow);
  transition: color 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
}

.link-btn:hover .arrow {
  color: rgba(255, 255, 255, 0.72);
  transform: translateX(2px);
}


/* ============================================================
   Prijzen page
   ============================================================ */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  color: var(--muted);
  text-decoration: none;
  font-size: var(--size-sm);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  transition: color 0.2s, transform 0.2s;
}

.back-link:hover {
  color: var(--text);
}

.back-arrow {
  font-size: var(--size-base);
  transition: transform 0.2s;
}

.back-link:hover .back-arrow {
  transform: translateX(-3px);
}

.price-header {
  width: 100%;
  margin-bottom: 30px;
}

.price-title {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 6px;
  background: linear-gradient(100deg, var(--text) 40%, var(--blue) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-lede {
  font-size: var(--size-sub);
  line-height: 1.55;
  color: var(--text-sub);
  font-weight: 300;
  max-width: 42ch;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 30px;
}

.price-card {
  position: relative;
  padding: 20px 20px 18px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.price-card--featured {
  border-color: rgba(176, 75, 36, 0.45);
  background: linear-gradient(160deg, rgba(176, 75, 36, 0.14), var(--panel) 55%);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3), 0 0 24px rgba(176, 75, 36, 0.14);
}

.price-badge {
  position: absolute;
  top: -11px;
  right: 18px;
  background: linear-gradient(120deg, var(--amber), var(--blue));
  color: var(--text);
  font-family: var(--font-title);
  font-size: var(--size-xs);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.price-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.price-name {
  font-family: var(--font-title);
  font-size: var(--size-title);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-amount {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--text);
}

.price-from {
  font-family: var(--font);
  font-size: var(--size-xs);
  font-weight: 300;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 3px;
}

.price-desc {
  font-size: var(--size-sub);
  line-height: 1.5;
  color: var(--text-sub);
  font-weight: 300;
}

.price-note {
  width: 100%;
  margin-bottom: 34px;
}

.price-note-title {
  font-family: var(--font-title);
  font-size: var(--size-title);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.price-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-includes li {
  position: relative;
  padding-left: 20px;
  font-size: var(--size-sub);
  color: var(--text-sub);
  font-weight: 300;
  line-height: 1.5;
}

.price-includes li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--amber), var(--blue));
}

.custom-note {
  width: 100%;
  border-top: 1px solid var(--line-soft);
  padding-top: 32px;
}

.custom-title {
  font-family: var(--font-title);
  font-size: var(--size-title);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: linear-gradient(100deg, var(--text) 40%, var(--amber) 140%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.custom-desc {
  font-size: var(--size-sub);
  line-height: 1.6;
  color: var(--text-sub);
  font-weight: 300;
}

.custom-mail {
  color: var(--text);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.custom-mail:hover {
  color: var(--blue);
  text-decoration-color: var(--blue);
}


/* ============================================================
   Intro loader
   ============================================================ */

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(31, 75, 230, 0.20), transparent 28%),
    radial-gradient(circle at 46% 50%, rgba(176, 75, 36, 0.16), transparent 24%),
    rgba(1, 3, 13, 0.96);
  animation: introOut 1.05s cubic-bezier(0.7, 0, 0.2, 1) 0.58s both;
}

.intro-logo {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(31, 75, 230, 0.4));
  animation: introPulse 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}


/* ============================================================
   Animations
   ============================================================ */

@keyframes glowShift {
  from { opacity: 0.72; transform: scale(1); }
  to   { opacity: 0.95; transform: scale(1.04); }
}

@keyframes sweepLight {
  from { transform: translateX(-120%); opacity: 0; }
  35%  { opacity: 1; }
  to   { transform: translateX(120%); opacity: 0; }
}

@keyframes photoEntry {
  0%   { opacity: 0; transform: scale(0.78) translateY(-18px); filter: blur(8px); }
  64%  { opacity: 1; transform: scale(1.045) translateY(0); filter: blur(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

@keyframes ringAura {
  0%   { opacity: 0; transform: scale(0.72) rotate(-24deg); }
  45%  { opacity: 0.9; }
  100% { opacity: 0.18; transform: scale(1.04) rotate(18deg); }
}

@keyframes logoEntry {
  0%   { opacity: 0; transform: translateY(18px) scale(0.96); filter: blur(8px) drop-shadow(0 0 0 rgba(31, 75, 230, 0)); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0) drop-shadow(0 0 12px rgba(31, 75, 230, 0.28)); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px) scale(0.98); filter: blur(5px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes introPulse {
  0%   { opacity: 0; transform: scale(0.8) translateY(8px); filter: blur(8px); }
  60%  { opacity: 1; transform: scale(1.04) translateY(0); filter: blur(0); }
  100% { opacity: 0.9; transform: scale(1) translateY(0); filter: blur(0); }
}

@keyframes introOut {
  0%   { opacity: 1; clip-path: circle(150% at 50% 45%); }
  100% { opacity: 0; clip-path: circle(0% at 50% 45%); visibility: hidden; }
}


/* ============================================================
   Accessibility
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .intro-loader { display: none; }
}
