:root {
  color-scheme: light;
  /* Brand Gradients */
  --bg-gradient: linear-gradient(180deg, #fffcf5 0%, #d8d5ca 100%);
  --ink-gradient: linear-gradient(180deg, #6d7486 0%, #0a0d13 100%);
  --accent-gradient: linear-gradient(180deg, #e52b2b 0%, #731919 100%);

  /* Core Colors */
  --bg-solid: #fffcf5;
  --ink-solid: #0a0d13;
  --muted: #6d7486;
  --muted-light: #9ca3af;

  /* Semantic */
  --text: var(--ink-solid);
  --card-bg: rgba(255, 255, 255, 0.6);
  --card-border: rgba(255, 255, 255, 0.4);
  --shadow-soft: 0 20px 40px rgba(10, 13, 19, 0.03);
  --shadow-hover: 0 30px 60px rgba(10, 13, 19, 0.06);
  --radius: 24px;
  --display-font: 'Orev', 'Inter', system-ui, -apple-system, sans-serif;
  --body-font: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--body-font);
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(1400px circle at -15% 35%, hsla(25, 70%, 75%, 0.4), transparent 45%),
    radial-gradient(1100px circle at 115% 5%, hsla(6, 75%, 50%, 0.28), transparent 42%);
  pointer-events: none;
  z-index: 0;
  animation: subtle-shift 20s ease-in-out infinite alternate;
}

@keyframes subtle-shift {
  from {
    opacity: 0.85;
  }

  to {
    opacity: 1;
  }
}

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px 88px;
  position: relative;
  z-index: 1;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 42px;
}

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

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

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

.language-selector select {
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(109, 116, 134, 0.2);
  background: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-solid);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.language-selector select:hover {
  border-color: rgba(109, 116, 134, 0.4);
  background: rgba(255, 255, 255, 0.9);
}

.language-selector select:focus {
  outline: none;
  border-color: #6d7486;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(109, 116, 134, 0.1);
}

.top-action {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.5);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(109, 116, 134, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 16px 0 24px;
  letter-spacing: -1.2px;
  font-family: var(--display-font);
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
}

.headline-em {
  background: var(--ink-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 580px;
  font-size: 18px;
  line-height: 1.6;
}

.eyebrow {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 12px;
  display: inline-block;
  text-transform: none;
}

.hero-image-container {
  margin-bottom: 24px;
  position: relative;
  width: fit-content;
}

.hero-workers {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 8px 0 14px;
}

.stat {
  background: rgba(255, 255, 255, 0.4);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-solid);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.stat:hover {
  box-shadow: 0 8px 20px rgba(10, 13, 19, 0.06);
  background: rgba(255, 255, 255, 0.7);
}

.layout-stack {
  display: grid;
  gap: 16px;
}

.waitlist-card {
  background: var(--card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid var(--card-border);
  padding: 40px;
  padding-bottom: 64px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: visible;
  transition: none;
}

.waitlist-card:hover {
  box-shadow: var(--shadow-hover);
}

.waitlist-header h2 {
  font-size: 32px;
  margin: 0 0 12px;
  letter-spacing: -0.8px;
  color: var(--ink-solid);
  font-weight: 700;
}

.waitlist-header p {
  margin: 0;
  color: var(--muted);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(229, 43, 43, 0.08);
  color: #e52b2b;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

form {
  margin-top: 18px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-solid);
  margin-bottom: 8px;
}

.field input,
.field select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(109, 116, 134, 0.2);
  background: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  color: var(--ink-solid);
  transition: none;
  font-family: inherit;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: #6d7486;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(109, 116, 134, 0.1);
}

.radio-group {
  display: grid;
  gap: 10px;
}

.radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(109, 116, 134, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  background: rgba(255, 255, 255, 0.4);
  user-select: none;
}

.radio:hover {
  border-color: hsla(6, 75%, 50%, 0.4);
  background: rgba(255, 255, 255, 0.95);
}

.radio input {
  width: auto;
  accent-color: #e52b2b;
  cursor: pointer;
}

.radio input:checked+span {
  color: var(--ink-solid);
  font-weight: 600;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
  user-select: none;
  cursor: pointer;
}

.checkbox input {
  width: auto;
  accent-color: #e52b2b;
  cursor: pointer;
}

button.primary {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: none;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(229, 43, 43, 0.15);
  margin-top: 8px;
}

button.primary:hover {
  box-shadow: 0 16px 32px rgba(229, 43, 43, 0.25);
  filter: brightness(1.05);
}

.primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 54px hsla(6, 75%, 45%, 0.42),
    0 8px 20px hsla(6, 70%, 40%, 0.25);
}

.primary:hover::before {
  opacity: 1;
}

.primary:active {
  box-shadow: 0 12px 36px hsla(6, 75%, 45%, 0.35);
}

.helper {
  color: var(--muted);
  font-size: 13px;
  margin: 10px 0 0;
}

.error {
  color: #b42318;
  font-size: 13px;
  margin: 6px 0 0;
  min-height: 18px;
}

.alert {
  position: absolute;
  bottom: 14px;
  left: 22px;
  right: 22px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
  background: rgba(132, 21, 21, 0.12);
  border: 1px solid rgba(132, 21, 21, 0.28);
  color: #841515;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.alert.error-state {
  background: rgba(180, 35, 24, 0.12);
  border-color: rgba(180, 35, 24, 0.28);
  color: #b42318;
}

.alert.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  border-top: 1px solid rgba(10, 13, 19, 0.08);
  background: rgba(255, 252, 245, 0.6);
  margin-top: 76px;
  backdrop-filter: blur(14px);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 24px 32px;
}

.footer-logo {
  height: 24px;
  width: auto;
  opacity: 0.8;
  margin-bottom: 12px;
}

.foot-text {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
}

.foot-meta {
  margin: 0;
  color: var(--muted-light);
  font-size: 13px;
}

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

  /* Mobilde waitlist formu içeriğin altında kalır - order yok */

  .hero-visual {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 26px 18px 72px;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-right {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }

  .language-selector {
    width: 100%;
  }

  .language-selector select {
    width: 100%;
  }

  .top-action {
    align-self: stretch;
    text-align: center;
  }
}