:root {
  --bg: #0D0D0C;
  --gold: #C9A227;
  --bone: #F5F1E8;
  --muted: #8A857A;

  --font-serif: "Noto Serif", Georgia, serif;
  --font-sans: "Inter", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--bone);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

p {
  margin: 0;
}

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

a {
  color: inherit;
}

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

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

@media (min-width: 640px) {
  .section {
    padding: 96px 0;
  }
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

.section-caption {
  text-align: center;
  color: var(--muted);
  margin-bottom: 24px;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-align: center;
}

.micro-note {
  color: var(--muted);
  font-size: 0.8rem;
}

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

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

.display {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  margin-top: 24px;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 620px;
  margin: 24px auto 0;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.text-link {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  padding: 16px 32px;
}

.btn-gold:hover {
  opacity: 0.88;
}

.btn-gold:focus-visible {
  outline-color: var(--bone);
}

.btn-gold:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ---------- Video ---------- */

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: var(--bg);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Airy text (Τι είναι το clipping) ---------- */

.airy-text {
  margin-top: 24px;
  text-align: center;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.8;
  color: var(--bone);
}

.highlight {
  color: var(--gold);
}

/* ---------- Steps ---------- */

.steps-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 860px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .step-card--wide {
    grid-column: 1 / -1;
  }
}

.step-card {
  border: 1px solid rgba(201, 162, 39, 0.18);
  background: rgba(245, 241, 232, 0.03);
  border-radius: 12px;
  padding: 28px;
}

@media (max-width: 479px) {
  .step-card {
    padding: 22px;
  }
}

@media (hover: hover) {
  .step-card.reveal:hover {
    border-color: rgba(201, 162, 39, 0.55);
    transform: translateY(-3px);
    transition: border-color 0.25s ease, transform 0.25s ease;
  }
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 10px;
  margin-bottom: 20px;
}

.step-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.step-label {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.step-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bone);
}

.step-card p {
  margin-top: 10px;
  color: var(--muted);
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.step-tag {
  font-size: 0.75rem;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 999px;
  padding: 4px 12px;
}

.step-card--cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.step-card-cta-btn {
  flex-shrink: 0;
}

@media (max-width: 859px) {
  .step-card--cta {
    flex-direction: column;
    align-items: stretch;
  }

  .step-card-cta-btn {
    width: 100%;
    text-align: center;
  }
}

.steps-grid .step-card:nth-child(1) { transition-delay: 0ms; }
.steps-grid .step-card:nth-child(2) { transition-delay: 60ms; }
.steps-grid .step-card:nth-child(3) { transition-delay: 120ms; }
.steps-grid .step-card:nth-child(4) { transition-delay: 180ms; }
.steps-grid .step-card:nth-child(5) { transition-delay: 240ms; }
.steps-grid .step-card:nth-child(6) { transition-delay: 300ms; }
.steps-grid .step-card:nth-child(7) { transition-delay: 360ms; }

/* ---------- Stats strip (Νούμερα) ---------- */

.stats-strip {
  background: rgba(245, 241, 232, 0.03);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 16px 12px;
}

.stat-item:nth-child(2n+1) {
  border-left: none;
}

.stat-item:nth-child(2n) {
  border-left: 1px solid rgba(138, 133, 122, 0.25);
}

.stat-item:nth-child(n+3) {
  border-top: 1px solid rgba(138, 133, 122, 0.25);
  margin-top: 8px;
  padding-top: 24px;
}

@media (min-width: 640px) {
  .stat-item:nth-child(n) {
    border-left: 1px solid rgba(138, 133, 122, 0.25);
    border-top: none;
    margin-top: 0;
    padding-top: 16px;
  }

  .stat-item:first-child {
    border-left: none;
  }
}

.stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--muted);
}

.stats-grid .stat-item:nth-child(1) { transition-delay: 0ms; }
.stats-grid .stat-item:nth-child(2) { transition-delay: 80ms; }
.stats-grid .stat-item:nth-child(3) { transition-delay: 160ms; }
.stats-grid .stat-item:nth-child(4) { transition-delay: 240ms; }

/* ---------- Τι χρειάζεσαι ---------- */

.needs-card {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(201, 162, 39, 0.18);
  background: rgba(245, 241, 232, 0.03);
  border-radius: 12px;
}

@media (min-width: 700px) {
  .needs-card {
    grid-template-columns: 1fr 1fr;
  }
}

.needs-col {
  padding: 28px;
}

.needs-col--no {
  border-top: 1px solid rgba(201, 162, 39, 0.18);
}

@media (min-width: 700px) {
  .needs-col--no {
    border-top: 0;
    border-left: 1px solid rgba(201, 162, 39, 0.18);
  }
}

.needs-heading {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bone);
  margin-bottom: 20px;
}

.needs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.needs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.needs-list--yes li {
  color: var(--bone);
}

.needs-list--no li {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(138, 133, 122, 0.5);
}

.needs-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.needs-icon svg {
  width: 16px;
  height: 16px;
}

.needs-icon--yes svg {
  color: var(--gold);
}

.needs-icon--no svg {
  color: var(--muted);
}

.needs-list--yes li:nth-child(1) { transition-delay: 0ms; }
.needs-list--yes li:nth-child(2) { transition-delay: 60ms; }
.needs-list--yes li:nth-child(3) { transition-delay: 120ms; }
.needs-list--yes li:nth-child(4) { transition-delay: 180ms; }

.needs-list--no li:nth-child(1) { transition-delay: 0ms; }
.needs-list--no li:nth-child(2) { transition-delay: 60ms; }
.needs-list--no li:nth-child(3) { transition-delay: 120ms; }
.needs-list--no li:nth-child(4) { transition-delay: 180ms; }
.needs-list--no li:nth-child(5) { transition-delay: 240ms; }

/* ---------- Earnings ---------- */

.earnings-rate {
  text-align: center;
  font-size: 1.2rem;
  color: var(--bone);
  margin-top: 24px;
}

.earnings-rows {
  max-width: 380px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.earnings-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(138, 133, 122, 0.3);
  color: var(--muted);
}

.earnings-amount {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
}

.earnings-note {
  text-align: center;
  margin-top: 24px;
}

/* ---------- Ποιος είμαι ---------- */

.about-grid {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 700px) {
  .about-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
}

.about-photo {
  display: block;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--gold);
  border-radius: 12px;
  background: rgba(245, 241, 232, 0.03);
  overflow: hidden;
}

.about-photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 700px) {
  .about-photo {
    flex: 0 0 40%;
    max-width: none;
  }

  .about-text {
    flex: 1;
  }
}

.about-text p {
  color: var(--muted);
  line-height: 1.75;
}

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

.about-signature {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.about-name {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--bone);
}

.about-instagram {
  color: var(--gold);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.about-instagram:hover {
  opacity: 0.75;
}

/* ---------- FAQ ---------- */

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  color: var(--bone);
}

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

.faq-item .chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.faq-item[open] .chevron {
  transform: rotate(180deg);
}

.faq-item p {
  margin-top: 12px;
  color: var(--muted);
}

/* ---------- Telegram CTA ---------- */

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

.telegram-cta-line {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 24px;
}

/* ---------- Campaign / influencers ---------- */

.campaign {
  background: rgba(201, 162, 39, 0.04);
  border-top: 1px solid rgba(201, 162, 39, 0.25);
}

.campaign-lead {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 24px auto 0;
}

.campaign-form-wrap {
  max-width: 480px;
  margin: 48px auto 0;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(138, 133, 122, 0.4);
  background: rgba(245, 241, 232, 0.05);
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 1rem;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}

.field textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.form-error a {
  text-decoration: underline;
}

.form-success {
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
}

.form-success-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.form-success-text {
  margin-top: 8px;
  color: var(--muted);
}

.campaign-mail-note {
  text-align: center;
  margin-top: 24px;
}

.campaign-mail-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.campaign-mail-note a:hover {
  color: var(--gold);
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 40px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(138, 133, 122, 0.2);
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
