/* wakkel.eu Microsite — Styles v2 */

:root {
  --bg: #0c0c0e;
  --bg-raised: #18181b;
  --bg-elevated: #232326;
  --text: #f0f0f2;
  --text-secondary: #a0a0a8;
  --text-muted: #6b6b76;
  --accent: #6b6cf5;
  --accent-soft: rgba(107, 108, 245, 0.12);
  --radius: 16px;
  --max-width: 820px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Animations --- */

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-hero {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-hero:nth-child(1) { animation-delay: 0.05s; }
.animate-hero:nth-child(2) { animation-delay: 0.2s; }
.animate-hero:nth-child(3) { animation-delay: 0.35s; }
.animate-hero:nth-child(4) { animation-delay: 0.5s; }
.animate-hero:nth-child(5) { animation-delay: 0.65s; }

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hero --- */

.hero {
  padding: 140px 0 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* --- Rotating thoughts --- */

.hero-thoughts-wrap {
  position: relative;
  height: 32px;
  margin-bottom: 36px;
}

.hero-thought {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--text-secondary);
  font-style: italic;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.hero-thought.active {
  opacity: 1;
}

/* --- Hero badge --- */

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(107, 108, 245, 0.2);
}

.hero-logo {
  font-size: clamp(72px, 15vw, 104px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 28px;
  color: #c4c5fc;
  background: linear-gradient(140deg, #9b9df8 0%, #c4c5fc 50%, #f0f0f2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.hero-cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--accent);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 28px rgba(107, 108, 245, 0.35);
}

.hero-cta-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(107, 108, 245, 0.45);
}

/* --- Statement --- */

.statement {
  padding: 80px 0;
  border-top: 1px solid var(--bg-elevated);
}

.statement-text {
  font-size: clamp(18px, 2.8vw, 21px);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 660px;
  margin-bottom: 20px;
}

.statement-text em {
  color: var(--text);
  font-style: normal;
  font-weight: 500;
}

.statement-punchline {
  font-size: clamp(18px, 2.8vw, 21px);
  font-weight: 600;
  color: var(--text);
  max-width: 660px;
}

/* --- Features --- */

.features {
  padding: 80px 0;
  border-top: 1px solid var(--bg-elevated);
}

.features h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

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

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

.feature-card {
  background: var(--bg-raised);
  border: 1px solid var(--bg-elevated);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s;
}

.feature-card:hover {
  border-color: rgba(107, 108, 245, 0.28);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Screenshots --- */

.screenshots {
  padding: 80px 0;
  border-top: 1px solid var(--bg-elevated);
}

.screenshots h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

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

@media (max-width: 600px) {
  .screenshot-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.screenshot-card {
  text-align: center;
}

.screenshot-placeholder {
  background: var(--bg-raised);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bg-elevated);
}

.screenshot-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-caption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* --- Callout --- */

.callout {
  padding: 80px 0;
  border-top: 1px solid var(--bg-elevated);
}

.callout-quote {
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
  letter-spacing: -0.015em;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  max-width: 680px;
  font-style: normal;
}

.callout-quote cite {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0;
}

/* --- Merchant Showcase --- */

.merchant {
  padding: 80px 0;
  border-top: 1px solid var(--bg-elevated);
}

.merchant-header {
  margin-bottom: 40px;
}

.merchant-header h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.merchant-header p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.65;
}

.merchant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.merchant-screenshot {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--bg-elevated);
  background: var(--bg-raised);
}

.merchant-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.merchant-screenshot .screenshot-caption {
  padding: 12px 16px;
}

/* --- Pilot --- */

.pilot {
  padding: 80px 0;
  border-top: 1px solid var(--bg-elevated);
}

.pilot-inner {
  background: var(--bg-raised);
  border: 1px solid var(--bg-elevated);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.pilot-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(107, 108, 245, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.pilot-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.pilot-inner h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.pilot-inner p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

/* --- Person --- */

.person {
  padding: 80px 0;
  border-top: 1px solid var(--bg-elevated);
}

.person-block {
  max-width: 640px;
}

.person-quote {
  font-size: 72px;
  line-height: 0.75;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 20px;
  opacity: 0.5;
}

.person-main {
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.person-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.person-name {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Trust --- */

.trust {
  padding: 60px 0;
  border-top: 1px solid var(--bg-elevated);
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

@media (max-width: 600px) {
  .trust-item {
    width: calc((100% - 12px) / 2);
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 20px 14px;
  border-radius: 14px;
  border: 1px solid var(--bg-elevated);
  background: var(--bg-raised);
  line-height: 1.4;
  width: calc((100% - 24px) / 3);
}

.trust-item svg {
  color: var(--accent);
  opacity: 0.85;
  flex-shrink: 0;
}

/* --- CTA --- */

.cta {
  padding: 100px 0 80px;
  border-top: 1px solid var(--bg-elevated);
}

.cta-inner {
  text-align: center;
}

.cta h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.cta p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 14px 40px;
  background: var(--accent);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 28px rgba(107, 108, 245, 0.35);
}

.cta-button:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(107, 108, 245, 0.45);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-hint {
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  font-size: 13px !important;
  color: var(--text-muted) !important;
}

/* --- Footer --- */

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--bg-elevated);
}

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

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

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

/* --- Lightbox --- */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: white;
}

/* --- Image protection --- */

img {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

/* --- General link reset --- */

a {
  color: var(--accent);
  text-decoration: none;
}

/* --- Static pages --- */

.legal-page {
  padding: 100px 0 80px;
  max-width: 720px;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s;
}

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

.legal-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.legal-tagline {
  font-size: 20px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 40px;
}

.legal-section + .legal-section {
  margin-top: 40px;
}

.legal-page h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.legal-page p,
.legal-page li,
.legal-page address {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: normal;
}

.legal-list {
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
}

.legal-list li::before {
  content: "-";
  color: var(--accent);
  margin-right: 10px;
}

.legal-divider {
  border: none;
  border-top: 1px solid var(--bg-elevated);
  margin: 40px 0;
}

.legal-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--bg-elevated);
}

.legal-footer p {
  font-size: 14px;
  color: var(--text-muted);
}

.legal-note {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-muted);
}
