/* ================================================
   ALTERNATIVE A - OnlyTraders Original Colors
   Gelb (#FFDB15) + Dunkel (#0C1115) + Creme (#F9F6EB)
   ================================================ */

/* Local Font: Jost */
@font-face {
  font-family: 'Jost';
  src: url('./fonts/Jost-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0C1115;
  --bg-light: #F9F6EB;
  --text: #ffffff;
  --text-dark: #3B3B3B;
  --muted: rgba(255, 255, 255, .65);
  --muted2: rgba(255, 255, 255, .40);
  --accent: #FFDB15;
  --accent-dark: #E5C410;
  --green: #27ae60;
  --panel: rgba(255, 219, 21, .05);
  --stroke: rgba(255, 219, 21, .15);
  --shadow: 0 40px 100px rgba(0, 0, 0, .8);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Jost", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

#smooth-wrapper {
  position: relative;
}

#smooth-content {
  will-change: transform;
}

/* ---------- Shared Sections ---------- */
.hero-section,
.team-section {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.strategy-scroll-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* ---------- Topbar ---------- */
.hero-topbar {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  pointer-events: none;
}

.brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  pointer-events: auto;
  filter: drop-shadow(0 0 10px rgba(255, 219, 21, .3)) brightness(1);
  max-width: min(250px, 40vw);
}

@media (max-width: 768px) {
  .brand-logo {
    height: 40px;
    max-width: 150px;
  }
}

/* CTA Button - Gelb */
.cta {
  pointer-events: auto;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 20px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 20px 50px rgba(255, 219, 21, .3);
  transform: translateZ(0);
  transition: transform .3s ease, filter .3s ease, box-shadow .3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 25px 60px rgba(255, 219, 21, .4);
}

.cta-secondary {
  pointer-events: auto;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 12px 20px;
  margin-right: 12px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateZ(0);
  transition: all .3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-secondary:hover {
  background: rgba(255, 219, 21, .15);
  color: #fff;
}

/* ---------- HERO ---------- */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1400px 900px at 50% 30%, rgba(255, 219, 21, .12), transparent 60%),
    linear-gradient(to bottom, rgba(12, 17, 21, .6), rgba(12, 17, 21, .98));
  z-index: 1;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: -40px;
  background-image: url("./assets/nyse_bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(1) contrast(1.15) brightness(.5) sepia(0.2);
  transform: scale(1.05);
  opacity: .35;
  will-change: transform;
  z-index: -1;
}

.hero-stage {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 64px 20px 40px;
}

.hero-copy {
  width: min(1200px, 92vw);
  text-align: center;
}

.kicker {
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 11px;
  margin-bottom: 24px;
}

.hero-text {
  margin: 0;
  line-height: .8;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(80px, 14vw, 220px);
  text-shadow: 0 0 80px rgba(255, 219, 21, .2);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
  background: linear-gradient(180deg, #fff 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  display: block;
  font-size: clamp(14px, 1.8vw, 32px);
  letter-spacing: .45em;
  font-weight: 400;
  color: var(--accent);
  margin-top: 12px;
  text-align: center;
  width: 100%;
  -webkit-text-fill-color: var(--accent);
  background: none;
}

.hero-lead {
  margin: 32px auto 0;
  width: min(600px, 90vw);
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

.hero-portal {
  position: absolute;
  width: min(80vmin, 700px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid rgba(255, 219, 21, .1);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .6) inset,
    0 0 120px rgba(255, 219, 21, .15);
  opacity: .4;
  transform: translateY(20px);
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 4;
  opacity: .5;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.scroll-hint .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.scroll-hint .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 219, 21, .2), rgba(255, 219, 21, .6));
}

/* ---------- STRATEGY HORIZONTAL ---------- */
.strategy-track {
  display: flex;
  width: 300vw;
  height: 100%;
}

.strategy-panel {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 40px 22px;
  background:
    radial-gradient(1000px 600px at 15% 45%, rgba(255, 219, 21, .08), transparent 60%),
    radial-gradient(1000px 600px at 85% 55%, rgba(255, 255, 255, .02), transparent 60%),
    linear-gradient(to bottom, rgba(255, 255, 255, .01), rgba(0, 0, 0, .0));
}

.panel-inner {
  width: min(1200px, 92vw);
  display: grid;
  gap: 24px;
  align-content: center;
}

.panel-eyebrow {
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  font-size: 11px;
}

.panel-title {
  margin: 0;
  font-size: clamp(42px, 7vw, 100px);
  line-height: .9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 700;
}

.big-number {
  color: var(--accent);
  font-weight: 800;
  text-shadow: 0 0 60px rgba(255, 219, 21, .4);
}

.red {
  color: var(--accent);
}

.panel-text {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
  max-width: 58ch;
  line-height: 1.5;
  font-weight: 300;
}

.panel-media {
  position: relative;
  margin-top: 24px;
  border-radius: 4px;
  background: rgba(10, 10, 10, .6);
  border: 1px solid rgba(255, 219, 21, .2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .8), 0 0 40px rgba(255, 219, 21, .05);
  overflow: hidden;
  min-height: clamp(300px, 40vh, 500px);
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.panel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, .5);
  pointer-events: none;
}

.panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(0.8) sepia(0.1) brightness(0.9);
  transform: scale(1.05);
  opacity: 0.8;
}

.panel-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  justify-content: center;
}

.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 2px;
  border: 2px solid rgba(255, 219, 21, .4);
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: transparent;
  transition: all .3s ease;
}

.ghost:hover {
  background: rgba(255, 219, 21, .1);
  border-color: var(--accent);
  color: #fff;
}

/* Floating "candlestick-like" blocks */
.floating {
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 219, 21, .8), rgba(255, 255, 255, .0));
  opacity: .6;
  mix-blend-mode: screen;
  filter: blur(0px);
  transform: translateZ(0);
}

.floating::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  width: 14px;
  height: 40px;
  background: rgba(255, 219, 21, .3);
  border: 1px solid rgba(255, 219, 21, .8);
  box-shadow: 0 0 20px rgba(255, 219, 21, .2);
}

.floating-4 {
  left: 16%;
  top: 62%;
  height: 180px;
}

.floating-5 {
  left: 48%;
  top: 22%;
  height: 140px;
}

.floating-6 {
  left: 80%;
  top: 58%;
  height: 240px;
}

.floating-7 {
  left: 18%;
  top: 22%;
  height: 190px;
}

.floating-8 {
  left: 78%;
  top: 58%;
  height: 160px;
}

/* Slab card on panel 3 */
.panel-slab {
  padding: 40px;
  min-height: clamp(300px, 40vh, 500px);
  display: grid;
  align-content: center;
  gap: 24px;
  background:
    radial-gradient(800px 400px at 30% 30%, rgba(255, 219, 21, .08), transparent 60%),
    linear-gradient(to bottom, rgba(255, 255, 255, .02), rgba(0, 0, 0, .3));
}

.slab-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent);
  font-size: 12px;
}

.slab-list {
  display: grid;
  gap: 16px;
}

.slab-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-radius: 4px;
  border: 1px solid rgba(255, 219, 21, .15);
  background: rgba(0, 0, 0, .4);
  color: rgba(255, 255, 255, .8);
  font-weight: 400;
  font-size: 18px;
  backdrop-filter: blur(4px);
}

.badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 219, 21, .2);
  border: 1px solid rgba(255, 219, 21, .5);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

/* ---------- TESTIMONIAL ---------- */
.testimonial-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, rgba(255, 219, 21, .03) 0%, transparent 100%);
}

.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 219, 21, .03);
  border: 1px solid rgba(255, 219, 21, .12);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
}

.testimonial-quote {
  margin-bottom: 32px;
}

.quote-icon {
  color: var(--accent);
  opacity: .6;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: #fff;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--bg);
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.author-location {
  font-size: 14px;
  color: var(--muted);
}

.testimonial-audio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.audio-play-btn {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  transition: all .3s ease;
  box-shadow: 0 4px 20px rgba(255, 219, 21, .4);
}

.audio-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(255, 219, 21, .6);
}

.audio-play-btn.playing {
  background: #fff;
  color: var(--accent);
}

.audio-play-btn.playing .play-icon {
  display: none;
}

.audio-play-btn.playing .pause-icon {
  display: block !important;
}

.audio-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 32px 24px;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .author-info {
    text-align: center;
  }
}

/* ---------- MEMBERSHIP / OFFER SECTION ---------- */
.membership-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(255, 219, 21, .02) 50%, var(--bg) 100%);
}

.content-limit {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.center {
  text-align: center;
}

.eyebrow {
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  font-size: 11px;
  margin-bottom: 16px;
}

.section-title {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.pricing-card {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 219, 21, .3);
}

.glow-card {
  background: rgba(255, 219, 21, .03);
  border: 2px solid rgba(255, 219, 21, .3);
  box-shadow: 0 0 60px rgba(255, 219, 21, .1);
}

.glow-card:hover {
  box-shadow: 0 0 80px rgba(255, 219, 21, .15);
}

.badge-overlay {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 12px;
  border-radius: 2px;
}

.card-header {
  margin-bottom: 32px;
}

.card-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

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

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: 15px;
  color: rgba(255, 255, 255, .8);
}

.check {
  color: var(--accent);
  font-weight: 700;
}

.card-footer {
  margin-top: auto;
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  border: 2px solid rgba(255, 219, 21, .4);
  border-radius: 2px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: all .3s ease;
}

.cta-outline:hover {
  background: rgba(255, 219, 21, .1);
  border-color: var(--accent);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* ---------- NEWSLETTER ---------- */
.newsletter-section {
  padding: 80px 24px;
  background: 
    radial-gradient(800px 400px at 50% 0%, rgba(255, 219, 21, .08), transparent 60%),
    var(--bg);
}

.newsletter-form-container {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 219, 21, .15);
  border-radius: 16px;
  padding: 48px 40px;
}

.newsletter-form {
  display: grid;
  gap: 20px;
}

.form-group {
  text-align: left;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 8px;
}

.cinematic-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, .4);
  border: 1px solid rgba(255, 219, 21, .2);
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: all .3s ease;
}

.cinematic-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(255, 219, 21, .15);
}

.cinematic-input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  font-size: 13px;
  color: var(--muted);
}

.cinematic-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  margin-top: 2px;
}

/* ---------- FAQ ---------- */
.faq-section {
  padding: 100px 24px;
}

.faq-grid {
  display: grid;
  gap: 32px;
}

.faq-item {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 32px;
  transition: all .3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 219, 21, .2);
}

.faq-q {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.faq-a {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-a:last-child {
  margin-bottom: 0;
}

.faq-a a {
  color: var(--accent);
  text-decoration: underline;
}

/* ---------- LIMITED SECTION ---------- */
.limited-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 219, 21, .03) 50%, transparent 100%);
}

.limit-content {
  max-width: 700px;
  margin: 48px auto 0;
  text-align: center;
}

.limit-question {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--accent);
}

.limit-answer {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 12px;
}

/* ---------- TEAM ---------- */
.team-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 800px at 50% 45%, rgba(255, 219, 21, .05), transparent 60%),
    linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(12, 17, 21, 1));
}

.team-bg::before {
  content: "";
  position: absolute;
  inset: -40px;
  background-image: url("./assets/nyse_bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(1) contrast(1.2) brightness(.35) sepia(0.15);
  opacity: .3;
  transform: scale(1.06);
  will-change: transform;
}

.team-center {
  position: relative;
  z-index: 3;
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.team-quote {
  width: min(800px, 92vw);
  text-align: center;
  background: rgba(255, 219, 21, .02);
  border: 1px solid rgba(255, 219, 21, .1);
  backdrop-filter: blur(8px);
  padding: 48px 32px;
}

.team-kicker {
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  font-size: 11px;
  margin-bottom: 16px;
}

.team-title {
  margin: 0;
  font-size: clamp(40px, 6vw, 90px);
  line-height: .9;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.team-text {
  margin: 24px auto 32px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 24px);
  max-width: 60ch;
  font-weight: 300;
}

.team-foreground {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.team-photo {
  position: absolute;
  width: min(29vmin, 340px);
  height: auto;
  border-radius: 4px;
  border: 2px solid rgba(255, 219, 21, .2);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .9);
  opacity: 1;
  will-change: transform;
  filter: grayscale(0.8) contrast(1.1) sepia(0.1);
}

.team-photo-michael {
  left: 2vw;
  top: 30vh;
  transform: rotate(-3deg);
}

.team-photo-matthias {
  right: 2vw;
  bottom: 30vh;
  transform: rotate(3deg);
}

/* ---------- WAITLIST CTA ---------- */
.waitlist-cta-section {
  padding: 100px 24px;
  text-align: center;
}

.waitlist-cta-text {
  font-size: 18px;
  color: var(--muted);
  margin: 24px 0 40px;
}

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  padding: 60px 24px 40px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, .3);
  background: linear-gradient(180deg, transparent 0%, rgba(255, 219, 21, .02) 100%);
}

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

.footer-link {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  transition: color .3s ease;
}

.footer-link:hover {
  color: var(--accent);
}

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

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .5);
  transition: all .3s ease;
}

.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
}

/* ---------- MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-content {
  background: var(--bg);
  border: 1px solid rgba(255, 219, 21, .2);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .9);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .5);
  font-size: 28px;
  cursor: pointer;
  transition: color .3s ease;
}

.modal-close:hover {
  color: var(--accent);
}

.modal-title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
}

.modal-subtitle {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 15px;
}

.login-form {
  display: grid;
  gap: 20px;
}

.login-error {
  background: rgba(231, 76, 60, .1);
  border: 1px solid rgba(231, 76, 60, .3);
  border-radius: 8px;
  padding: 12px 16px;
  color: #e74c3c;
  font-size: 14px;
}

.login-error p {
  margin: 0;
}

.modal-footer-text {
  margin: 24px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.modal-footer-text a {
  color: var(--accent);
  text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form-container {
    padding: 32px 24px;
  }
  
  .team-photo {
    width: min(35vw, 200px);
  }
  
  .team-photo-michael {
    left: 4vw;
    top: 15vh;
  }
  
  .team-photo-matthias {
    right: 4vw;
    bottom: 15vh;
  }
}

@media (max-width: 480px) {
  .hero-topbar {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .cta-secondary {
    display: none;
  }
}
