/* ==========================================================================
   İNSAN MANYAKLARI — tokens
   Colors sampled directly from the live reference (energized-ability-808336.framer.app)
   ========================================================================== */
:root {
  --bg: #0B0D0C;
  --bg-raised: #121412;
  --fg: #F3F3EA;
  --fg-dim: rgba(243, 243, 234, 0.72);
  --fg-faint: rgba(243, 243, 234, 0.5);
  --acid: #B6FF00;
  --acid-ink: #0B0D0C;
  --line: rgba(243, 243, 234, 0.14);

  --f-display: 'Archivo Black', 'Archivo', sans-serif;
  --f-body: 'Archivo', sans-serif;

  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}

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

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 12, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: clamp(15px, 2.2vw, 18px);
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  color: var(--fg);
}
.logo-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--acid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-badge svg { width: 16px; height: 16px; }

.main-nav {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.main-nav a { position: relative; padding-bottom: 2px; color: var(--fg); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--acid);
  transition: right 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { right: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; background: var(--fg); }

@media (max-width: 640px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.is-open { max-height: 200px; }
  .main-nav a { padding: 16px var(--gutter); border-top: 1px solid var(--line); display: block; }
  .menu-toggle { display: flex; }
}

/* ==========================================================================
   Eyebrow
   ========================================================================== */
.eyebrow {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--acid);
  margin: 0 0 20px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding-top: clamp(32px, 6vw, 56px); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-bottom: clamp(56px, 8vw, 96px);
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(44px, 6.6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--fg);
}

.hero-text {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--fg-dim);
  max-width: 46ch;
  margin: 0 0 32px;
}
.hero-text--center { margin-left: auto; margin-right: auto; text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 16px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--acid);
  color: var(--acid-ink);
  transition: transform 0.15s ease, filter 0.15s ease;
}
.btn-primary:hover, .btn-primary:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.btn-primary svg { width: 14px; height: 14px; }

.hero-art img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
}

/* ==========================================================================
   Quote + Contact section
   ========================================================================== */
.quote-contact {
  padding: clamp(48px, 7vw, 72px) 0;
  border-top: 1px solid var(--line);
}

.qc-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

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

.quote-card {
  border: 1px solid var(--acid);
  border-radius: var(--radius);
  padding: clamp(24px, 3.5vw, 36px);
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.quote-star {
  color: var(--acid);
  font-size: 22px;
  line-height: 1;
  margin-bottom: 24px;
}
.quote-text {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  color: var(--acid);
  margin: 0;
  flex-grow: 1;
}
.quote-attr {
  margin-top: 24px;
  align-self: flex-end;
  font-size: 14px;
  color: var(--fg-dim);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
  margin: 0 0 20px;
  color: var(--fg);
}
.section-title--center { text-align: center; margin-left: auto; margin-right: auto; }

.contact-copy .hero-text { margin-bottom: 28px; }

.contact-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.contact-label {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--fg-faint);
  display: block;
  margin-bottom: 8px;
}
.contact-email {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--fg);
  border-bottom: 2px solid var(--acid);
  padding-bottom: 3px;
}
.contact-email:hover { color: var(--acid); }

/* ==========================================================================
   Socials
   ========================================================================== */
.socials { padding: clamp(48px, 7vw, 80px) 0 clamp(64px, 9vw, 100px); }

.link-row {
  list-style: none;
  margin: clamp(28px, 4vw, 40px) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.link-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 14px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--fg);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.link-pill:hover, .link-pill:focus-visible {
  border-color: var(--acid);
  background: var(--bg-raised);
}
.link-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--acid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.link-badge svg { width: 15px; height: 15px; }

@media (max-width: 640px) {
  .link-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .link-pill {
    width: 100%;
    justify-content: space-between;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fg);
}
.footer-tagline { color: var(--fg-faint); }
