/* PatiCüzdan Shop — Coming Soon */
:root {
  --primary: #0f7a6e;
  --primary-dark: #073f3c;
  --secondary: #10a894;
  --accent: #f5a64a;
  --bg: #f7fffc;
  --cream: #fff8ef;
  --card: #ffffff;
  --text: #102a2a;
  --muted: #667d7a;
  --border: #e2f0ec;
  --shadow: 0 18px 48px rgba(15, 122, 110, 0.08);
  --shadow-lg: 0 28px 72px rgba(15, 42, 42, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1120px;
  --font: 'Poppins', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(165deg, var(--bg) 0%, rgba(15, 122, 110, 0.05) 45%, var(--cream) 100%);
}

.page-bg::before,
.page-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.page-bg::before {
  width: min(480px, 80vw);
  height: min(480px, 80vw);
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(16, 168, 148, 0.22), transparent 70%);
}

.page-bg::after {
  width: min(360px, 70vw);
  height: min(360px, 70vw);
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(245, 166, 74, 0.15), transparent 70%);
}

.grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(15, 122, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 122, 110, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 90%);
}

.site-header {
  padding: 20px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.brand-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  transition: border-color 0.15s, color 0.15s;
}

.header-link:hover {
  color: var(--primary);
  border-color: rgba(15, 122, 110, 0.35);
  text-decoration: none;
}

.hero {
  padding: 32px 0 56px;
  text-align: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.92);
  }
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 auto 32px;
  max-width: 620px;
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  color: var(--muted);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stat-pill strong {
  font-size: 1.35rem;
  color: var(--primary);
  line-height: 1.2;
}

.stat-pill span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.progress-section {
  max-width: 560px;
  margin: 0 auto 48px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: left;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  gap: 12px;
}

.progress-header h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.progress-header span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
}

.progress-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 122, 110, 0.1);
  overflow: hidden;
  margin-bottom: 20px;
}

.progress-fill {
  height: 100%;
  width: 42%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.progress-steps {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.progress-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
}

.progress-steps li.done {
  color: var(--text);
  font-weight: 500;
}

.progress-steps li.active {
  color: var(--primary);
  font-weight: 600;
}

.step-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  background: rgba(15, 122, 110, 0.08);
  color: var(--muted);
}

.progress-steps li.done .step-icon {
  background: rgba(21, 128, 61, 0.12);
  color: var(--success);
}

.progress-steps li.active .step-icon {
  background: rgba(15, 122, 110, 0.15);
  color: var(--primary);
}

.section {
  padding: 48px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

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

.category-card {
  position: relative;
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.7;
}

.category-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: rgba(15, 122, 110, 0.08);
  margin-bottom: 16px;
}

.category-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

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

.soon-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(245, 166, 74, 0.15);
  color: #b45309;
}

.features-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(15, 122, 110, 0.12), rgba(16, 168, 148, 0.08));
  font-size: 1.2rem;
}

.feature-card h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Notify / Newsletter ── */
.notify-section {
  position: relative;
  padding: 48px 0 80px;
}

.notify-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(100%, 760px);
  height: calc(100% + 32px);
  border-radius: 40px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.92), transparent 72%);
  pointer-events: none;
}

.notify-section .container {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.notify-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2f0ec;
  box-shadow:
    0 2px 4px rgba(15, 42, 42, 0.03),
    0 16px 40px rgba(15, 122, 110, 0.1),
    0 32px 64px rgba(15, 42, 42, 0.06);
}

.notify-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #073f3c, #0f7a6e 40%, #f5a64a 100%);
  z-index: 2;
}

.notify-card__hero {
  position: relative;
  padding: 36px 28px 40px;
  background: linear-gradient(135deg, #073f3c 0%, #0f7a6e 50%, #10a894 100%);
  color: #ffffff;
  overflow: hidden;
}

@media (min-width: 640px) {
  .notify-card__hero {
    padding: 44px 40px 48px;
  }
}

.notify-card__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.14), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(245, 166, 74, 0.2), transparent 50%);
  pointer-events: none;
}

.notify-card__hero-content {
  position: relative;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.notify-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notify-card__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f5a64a;
  animation: pulse 2s ease-in-out infinite;
}

.notify-card__hero h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 4.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.notify-card__hero p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.notify-card__body {
  padding: 28px 24px 32px;
  background: #ffffff;
}

@media (min-width: 640px) {
  .notify-card__body {
    padding: 32px 40px 40px;
  }
}

.notify-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0 0 24px;
  border-bottom: 1px solid #e2f0ec;
}

@media (max-width: 520px) {
  .notify-benefits {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-bottom: 4px;
    margin-inline: -4px;
    padding-inline: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .notify-benefits::-webkit-scrollbar {
    display: none;
  }
}

.notify-benefits li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 16px;
  background: #f7fffc;
  border: 1px solid #e2f0ec;
  text-align: center;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

@media (max-width: 520px) {
  .notify-benefits li {
    flex: 0 0 132px;
    scroll-snap-align: start;
  }
}

@media (min-width: 521px) {
  .notify-benefits li:hover {
    border-color: rgba(15, 122, 110, 0.25);
    box-shadow: 0 4px 12px rgba(15, 122, 110, 0.06);
  }
}

.notify-benefit-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(15, 122, 110, 0.1);
  color: #0f7a6e;
}

.notify-benefit-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: #102a2a;
  line-height: 1.3;
}

.notify-form {
  margin: 0;
}

.notify-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 6px;
  border-radius: 18px;
  background: #ffffff;
  border: 1.5px solid #e2f0ec;
  box-shadow:
    0 2px 8px rgba(15, 42, 42, 0.04),
    inset 0 1px 2px rgba(15, 42, 42, 0.02);
}

@media (min-width: 540px) {
  .notify-input-group {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding: 6px 6px 6px 0;
  }
}

.notify-input-group input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 20px;
  border: none;
  border-radius: 14px;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  color: #102a2a;
}

@media (min-width: 540px) {
  .notify-input-group input {
    padding-left: 18px;
  }
}

.notify-input-group input::placeholder {
  color: #667d7a;
}

.notify-input-group input:focus {
  outline: none;
}

.notify-input-group:focus-within {
  border-color: #0f7a6e;
  box-shadow:
    inset 0 1px 2px rgba(15, 42, 42, 0.04),
    0 0 0 3px rgba(15, 122, 110, 0.12);
}

.notify-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #f5a64a 0%, #e8933a 100%);
  color: #102a2a;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 20px rgba(245, 166, 74, 0.35);
}

@media (min-width: 540px) {
  .notify-submit {
    flex-shrink: 0;
    margin: 6px 6px 6px 0;
  }
}

.notify-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(245, 166, 74, 0.45);
}

.notify-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.notify-submit-icon {
  transition: transform 0.15s ease;
}

.notify-submit:hover .notify-submit-icon {
  transform: translateX(3px);
}

.notify-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.76rem;
  line-height: 1.55;
  color: #667d7a;
  cursor: pointer;
}

.notify-consent input {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: #0f7a6e;
}

.notify-consent a {
  color: #0f7a6e;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.notify-consent a:hover {
  color: #073f3c;
}

.form-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
}

.form-status:empty {
  display: none;
  margin: 0;
  padding: 0;
}

.form-status.success {
  color: #15803d;
  background: rgba(21, 128, 61, 0.08);
  border: 1px solid rgba(21, 128, 61, 0.18);
}

.form-status.error {
  color: #e96c22;
  background: rgba(233, 108, 34, 0.08);
  border: 1px solid rgba(233, 108, 34, 0.18);
}

.app-cta {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--border);
}

.app-cta h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.app-cta p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(15, 122, 110, 0.25);
}

.btn-secondary {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
}

.site-footer {
  padding: 32px 0 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-motto {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--secondary);
  font-weight: 500;
}
