/* ===================================================
   Çorum Girişimciler Topluluğu — Premium Bakım Sayfası
   =================================================== */

:root {
  --bg-deep:     #080d18;
  --bg-base:     #0c1222;
  --bg-raised:   #111827;
  --bg-surface:  #161f33;
  --bg-overlay:  rgba(255, 255, 255, 0.03);

  --border:      rgba(255, 255, 255, 0.07);
  --border-light:rgba(255, 255, 255, 0.12);
  --border-gold: rgba(201, 162, 39, 0.25);

  --text:        #eef2f7;
  --text-muted:  #8b9cb8;
  --text-subtle: #5a6a85;

  --gold:        #c9a227;
  --gold-light:  #dbb84a;
  --gold-dim:    rgba(201, 162, 39, 0.12);

  --blue:        #3d6fd4;
  --blue-light:  #5b8def;
  --blue-dim:    rgba(61, 111, 212, 0.12);

  --green:       #2ecc8a;
  --green-dim:   rgba(46, 204, 138, 0.12);

  --font-ui:     'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display:'Cormorant Garamond', Georgia, serif;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.3);
  --shadow-md:   0 8px 32px rgba(0,0,0,.35);
  --shadow-lg:   0 24px 64px rgba(0,0,0,.45);
  --shadow-gold: 0 0 40px rgba(201,162,39,.08);

  --ease:        cubic-bezier(.4,0,.2,1);
  --transition:  .35s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-ui);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Background ---- */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-bg__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(61,111,212,.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 50%, rgba(201,162,39,.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-base) 100%);
}

.page-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 80%);
}

.page-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.page-bg__orb--1 {
  width: 500px; height: 500px;
  background: rgba(61,111,212,.1);
  top: -100px; right: -100px;
}

.page-bg__orb--2 {
  width: 400px; height: 400px;
  background: rgba(201,162,39,.07);
  bottom: 10%; left: -80px;
}

/* ---- Top Bar ---- */
.topbar {
  position: relative;
  z-index: 20;
  background: rgba(201,162,39,.06);
  border-bottom: 1px solid var(--border-gold);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 28px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.topbar__divider {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .6;
}

.topbar__domain {
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

/* ---- Header ---- */
.header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(8,13,24,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand__name {
  display: block;
  font-weight: 700;
  font-size: .975rem;
  letter-spacing: -.01em;
  line-height: 1.3;
}

.brand__tagline {
  display: block;
  font-size: .75rem;
  color: var(--text-subtle);
  margin-top: 2px;
  font-weight: 400;
}

.header__status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--bg-overlay);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.status-indicator {
  position: relative;
  width: 10px; height: 10px;
}

.status-indicator__dot {
  position: absolute;
  inset: 0;
  background: var(--gold);
  border-radius: 50%;
}

.status-indicator__pulse {
  position: absolute;
  inset: -3px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  animation: status-pulse 2.5s ease-out infinite;
}

@keyframes status-pulse {
  0%   { transform: scale(.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.header__status-text {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .02em;
}

/* ---- Main ---- */
.main {
  position: relative;
  z-index: 1;
}

/* ---- Hero ---- */
.hero {
  padding: 72px 0 64px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--blue-dim);
  border: 1px solid rgba(61,111,212,.2);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #a8861f 100%);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(201,162,39,.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,.35);
}

.hero__eta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__eta-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-subtle);
}

.hero__eta-value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}

/* Status Panel */
.status-panel {
  background: var(--bg-raised);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.status-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.status-panel__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.status-panel__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  color: var(--gold-light);
}

.status-panel__icon svg {
  width: 20px; height: 20px;
}

.status-panel__title {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.status-panel__subtitle {
  font-size: .8rem;
  color: var(--text-subtle);
}

.status-panel__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.metric {
  background: var(--bg-overlay);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
}

.metric__value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.metric__value--text {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}

.metric__suffix {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.metric__label {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 6px;
}

.status-panel__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--text-subtle);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.check-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.check-item--done {
  color: var(--text-muted);
}

.check-item--done svg {
  color: var(--green);
}

.check-item--active {
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-weight: 500;
}

.check-item--active svg {
  color: var(--gold);
}

/* ---- Section Head ---- */
.section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
}

.section-head__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}

.section-head__desc {
  font-size: .975rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- Timeline ---- */
.timeline-section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.015);
}

.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.timeline__step {
  position: relative;
  padding: 0 16px;
  text-align: center;
}

.timeline__marker {
  width: 56px; height: 56px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--bg-raised);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.timeline__marker svg {
  width: 22px; height: 22px;
  color: var(--green);
}

.timeline__marker-dot {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  animation: status-pulse 2.5s ease-out infinite;
}

.timeline__marker-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-subtle);
}

.timeline__step--complete .timeline__marker {
  background: var(--green-dim);
  border-color: rgba(46,204,138,.35);
}

.timeline__step--current .timeline__marker {
  background: var(--gold-dim);
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201,162,39,.2);
}

.timeline__phase {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-subtle);
  margin-bottom: 6px;
}

.timeline__title {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.timeline__desc {
  font-size: .82rem;
  color: var(--text-subtle);
  line-height: 1.6;
  margin-bottom: 14px;
}

.timeline__status {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--bg-overlay);
  border: 1px solid var(--border);
  color: var(--text-subtle);
}

.timeline__status--done {
  background: var(--green-dim);
  border-color: rgba(46,204,138,.25);
  color: var(--green);
}

.timeline__status--active {
  background: var(--gold-dim);
  border-color: var(--border-gold);
  color: var(--gold-light);
}

/* ---- Features ---- */
.features {
  padding: 72px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature {
  position: relative;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 32px 32px;
  transition: var(--transition);
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature:hover::before {
  opacity: 1;
}

.feature__num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.04);
  line-height: 1;
}

.feature__icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-dim);
  border: 1px solid rgba(61,111,212,.2);
  border-radius: var(--radius-md);
  color: var(--blue-light);
  margin-bottom: 20px;
}

.feature__icon svg {
  width: 22px; height: 22px;
}

.feature__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature__desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- Mission ---- */
.mission {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.mission__quote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.mission__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-muted);
}

.mission__author {
  margin-top: 20px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .03em;
  font-style: normal;
}

/* ---- Contact ---- */
.contact {
  padding: 0 0 80px;
}

.contact__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  background: var(--bg-raised);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 10px 0 14px;
  line-height: 1.25;
}

.contact__desc {
  font-size: .925rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--bg-overlay);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a.contact__item:hover {
  border-color: var(--border-gold);
  background: var(--gold-dim);
}

.contact__item-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  flex-shrink: 0;
}

.contact__item-icon svg {
  width: 18px; height: 18px;
}

.contact__item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact__item-label {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-subtle);
}

.contact__item-value {
  font-size: .875rem;
  font-weight: 500;
  word-break: break-word;
}

/* ---- Footer ---- */
.footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border);
  background: rgba(8,13,24,.95);
  backdrop-filter: blur(20px);
  padding: 40px 0 0;
}

.footer__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__brand-name {
  font-weight: 700;
  font-size: .9rem;
}

.footer__brand-desc {
  font-size: .78rem;
  color: var(--text-subtle);
  margin-top: 2px;
}

.footer__copy {
  font-size: .78rem;
  color: var(--text-subtle);
}

.footer__signature {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer__signature-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer__signature-icon {
  color: var(--text-subtle);
  opacity: .5;
}

.footer__signature-icon svg {
  width: 18px; height: 18px;
}

.footer__credit {
  font-size: .82rem;
  color: var(--text-subtle);
}

.footer__credit-link {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.footer__credit-link:hover {
  border-bottom-color: var(--gold-light);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__panel {
    max-width: 460px;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .timeline::before {
    display: none;
  }

}

@media (max-width: 768px) {
  .header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero { padding: 48px 0 40px; }

  .hero__panel { max-width: 100%; }

  .timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .timeline__step {
    text-align: left;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 20px;
    padding: 0;
  }

  .timeline__marker {
    margin: 0;
    grid-row: span 3;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .contact__card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }

  .footer__main {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }

  .topbar__inner {
    flex-direction: column;
    gap: 4px;
    padding: 8px 20px;
  }

  .topbar__divider { display: none; }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .btn--primary {
    width: 100%;
    justify-content: center;
  }

}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
