/* Coming Soon - Minimalist & Elegant */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #fafafa;
  --fg: #111111;
  --muted: #888888;
  --border: #e5e5e5;
  --accent: #333333;
  --card-bg: #ffffff;
  --hover: #000000;
  --radius: 12px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0a0a;
    --fg: #f5f5f5;
    --muted: #777777;
    --border: #222222;
    --accent: #e0e0e0;
    --card-bg: #111111;
    --hover: #ffffff;
  }
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
}

.page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.container {
  width: 100%;
  max-width: 480px;
  text-align: center;
}

/* Header */
.header {
  margin-bottom: 3rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  transition: transform var(--transition), border-color var(--transition);
}

.brand:hover {
  transform: translateY(-2px);
  border-color: var(--muted);
}

.brand-icon {
  width: 24px;
  height: 24px;
}

/* Main */
.main {
  margin-bottom: 3rem;
}

.title {
  font-size: 2.5rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease-out;
}

.subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.8;
  animation: fadeUp 0.8s ease-out 0.15s both;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 2.5rem auto;
  animation: fadeUp 0.8s ease-out 0.3s both;
}

/* Contact Section */
.contact-section {
  animation: fadeUp 0.8s ease-out 0.45s both;
}

.contact-heading {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  text-align: left;
}

.contact-item:first-child {
  border-top: 1px solid var(--border);
}

.contact-item:hover {
  background: var(--card-bg);
}

.contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: color var(--transition);
}

.contact-item:hover .contact-icon {
  color: var(--fg);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.contact-value {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--fg);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-value:hover {
  color: var(--hover);
}

/* Footer */
.footer {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  animation: fadeUp 0.8s ease-out 0.6s both;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 640px) {
  .title {
    font-size: 1.75rem;
    letter-spacing: 0.1em;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .contact-item {
    padding: 0.875rem 1rem;
  }
}
