:root {
  --bg: #070a12;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.6);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --accent: #7c5cff;
  --accent2: #2fe0b7;
  --danger: #ff5c7a;
  --radius: 18px;
  --radius2: 14px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

/* Bootstrap benzeri spacing utility (ihtiyaç kadar) */
.mt-3 {
  margin-top: 1rem !important;
}

/* Bootstrap benzeri grid utility (ihtiyaç kadar) */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.col-12 {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue",
    "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% 10%, rgba(124, 92, 255, 0.22), transparent 55%),
    radial-gradient(1100px 700px at 80% 5%, rgba(47, 224, 183, 0.18), transparent 52%),
    radial-gradient(900px 600px at 60% 90%, rgba(255, 92, 122, 0.14), transparent 56%), var(--bg);
  overflow-x: hidden;
}

.confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.confetti-canvas.is-fading {
  opacity: 0;
  transition: opacity 380ms ease;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 40% 25%, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 75%);
  opacity: 0.65;
}

.glow {
  position: absolute;
  width: 720px;
  height: 720px;
  filter: blur(80px);
  opacity: 0.35;
  transform: translate3d(0, 0, 0);
}

.glow-a {
  left: -180px;
  top: -220px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.9), transparent 55%);
}

.glow-b {
  right: -220px;
  bottom: -280px;
  background: radial-gradient(circle, rgba(47, 224, 183, 0.9), transparent 55%);
}

.topbar {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.9), rgba(47, 224, 183, 0.85));
  box-shadow: 0 14px 40px rgba(124, 92, 255, 0.28);
}

.brand-name {
  font-weight: 750;
  font-size: 15px;
  line-height: 1.1;
}

.brand-sub {
  font-size: 12.5px;
  color: var(--muted2);
  margin-top: 2px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.pill:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero {
  padding: 34px 0 18px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: stretch;
}

.hero-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(124, 92, 255, 0.35);
  background: rgba(124, 92, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 13px;
  margin: 0 0 14px;
  align-self: flex-start;
  width: fit-content;
}

.title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.title-strong {
  background: linear-gradient(135deg, rgba(124, 92, 255, 1), rgba(47, 224, 183, 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  margin: 14px 0 18px;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.55;
}

.launch-info {
  border-radius: var(--radius);
  border: 1px solid rgba(124, 92, 255, 0.28);
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.12), rgba(255, 255, 255, 0.04));
  padding: 18px 18px 16px;
  margin: auto 0 0;
  min-height: 92px;
}

.launch-info-title {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14.5px;
  line-height: 1.65;
}

.launch-info-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
  line-height: 1.65;
}

.countdown-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  padding: 16px;
}

.countdown-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.countdown-label {
  font-size: 12px;
  color: var(--muted2);
  letter-spacing: 0.02em;
}

.countdown-date {
  margin-top: 2px;
  font-weight: 650;
}

.countdown-status {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.timebox {
  padding: 12px 10px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.14);
  text-align: center;
}

.time {
  font-size: 26px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.unit {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted2);
}

.mini-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 4px;
}

.btn {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 650;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn.primary {
  border-color: rgba(124, 92, 255, 0.38);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.95), rgba(47, 224, 183, 0.85));
  box-shadow: 0 18px 50px rgba(124, 92, 255, 0.2);
}

.btn.primary:hover {
  border-color: rgba(124, 92, 255, 0.5);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.04);
}

.btn.gradient {
  border-color: rgba(124, 92, 255, 0.38);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.95), rgba(47, 224, 183, 0.85));
  box-shadow: 0 18px 50px rgba(124, 92, 255, 0.18);
}

.btn.gradient:hover {
  border-color: rgba(124, 92, 255, 0.5);
}

.fineprint {
  margin: 14px 0 0;
  color: var(--muted2);
  font-size: 12.5px;
  line-height: 1.5;
}

.hero-right {
  min-width: 0;
}

.preview {
  height: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.preview-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.12);
}

.dots {
  display: inline-flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.95;
}

.dot.red {
  background: #ff5c7a;
}
.dot.yellow {
  background: #ffd05c;
}
.dot.green {
  background: #2fe0b7;
}

.preview-title {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.preview-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.preview-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
}

.preview-hint {
  font-size: 12.5px;
  color: var(--muted2);
  line-height: 1.5;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.86);
}

.section {
  padding: 26px 0;
}

.section--full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 0;
}

.page-hero {
  padding: 28px 0 8px;
}

.prose-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
}

.prose {
  color: var(--text);
  line-height: 1.75;
  font-size: 15px;
  max-width: 78ch;
}

.prose p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
}

.prose strong {
  color: rgba(255, 255, 255, 0.94);
}

.prose h2 {
  margin: 22px 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.prose ul {
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.prose li {
  margin: 8px 0;
}

.section-head {
  margin-bottom: 14px;
}

.section-head--with-action {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.section-head-main {
  min-width: 0;
}

.section-head-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.section-title {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 76ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
}

.card-title {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}

.contact--full {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact--full .form {
  width: min(760px, 100%);
}

.form {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.field-label {
  font-size: 12.5px;
  color: var(--muted2);
}

input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  padding: 11px 12px;
  outline: none;
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

input:focus,
textarea:focus {
  border-color: rgba(124, 92, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.14);
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}

.form-status {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  min-height: 18px;
}

.contact-side .side-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  position: sticky;
  top: 14px;
}

.side-title {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.side-text {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.side-meta {
  display: grid;
  gap: 10px;
}

.meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-k {
  color: var(--muted2);
  font-size: 12.5px;
}

.meta-v {
  font-weight: 650;
}

.footer {
  padding: 24px 0 34px;
}

.footer-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  margin-bottom: 16px;
}

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

.footer-brand {
  font-weight: 700;
  font-size: 13px;
}

.footer-note {
  font-size: 12.5px;
  color: var(--muted2);
  margin-top: 4px;
}

.footer-right {
  display: flex;
  gap: 14px;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  border-bottom: 1px dashed transparent;
  padding-bottom: 2px;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .preview {
    min-height: 340px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }

  .section--full {
    min-height: calc(100vh - 24px);
    justify-content: flex-start;
    padding: 28px 0;
  }

  .contact--full {
    align-items: stretch;
  }
  .contact-side .side-card {
    position: static;
  }

  .section-head--with-action {
    flex-direction: column;
    align-items: stretch;
  }

  .section-head-actions .btn {
    width: fit-content;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }
  .topbar {
    padding: 14px 0;
  }
  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}


