/* style.css for thinksthatwork.com Coming Soon */
@font-face {
  font-family: 'Times New Normal';
  src: url('timesnormal.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fff;
  --fg: #181818;
  --muted: #64748b;
  --accent: #ff6b35;
  --grain-opacity: 0.08;
  --font-main: 'Inter', system-ui, sans-serif;
  --font-logo: 'Manrope', system-ui, sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-main);
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

body.loaded {
  opacity: 1;
}

body.loading {
  opacity: 0;
}
.accent {
  color: var(--accent);
}
.tagline {
    font-family: var(--font-logo);
    font-size: 3rem;
    font-weight: 500;
    color: var(--muted);
    margin-top: 0.5rem;
    text-align: center;
    user-select: none;
    transition: all 0.3s ease-in-out;
    letter-spacing: -0.02em;
}

.tagline:hover {
  color: var(--accent);
  transform: translateY(-2px);
  transition: all 0.3s ease-in-out;
}
.grain-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background: transparent;
}
.grain-bg:before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: var(--grain-opacity);
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100" height="100" filter="url(%23noiseFilter)"/></svg>');
  background-size: 200px 200px;
  background-repeat: repeat;
  pointer-events: none;
}
main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}
.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100vw;
  max-width: 100vw;
  transform: translateY(20px);
  transition: all 0.8s ease-out 0.2s;
}

body.loaded .center-content {
  transform: translateY(0);
}
.logo {
  font-family: var(--font-logo);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 0.5rem;
  text-align: center;
  line-height: 1.3;
}
.logo .dot {
  color: var(--accent);
  font-size: 2.5rem;
  vertical-align: middle;
}
.socials {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.social-link {
  color: var(--muted);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  transform: scale(1);
}

.social-link:hover {
  color: var(--accent);
  transform: scale(1.1);
}
@media (max-width: 600px) {
  .logo {
    font-size: 1.3rem;
  }
  .center-content {
    gap: 1.5rem;
  }
  .socials {
    gap: 1.2rem;
  }
  .tagline {
    font-size: 2rem;
  }
}
