/*
 * PORKLY — Landing page
 * Mirrors src/theme/tokens.ts (Colors + Typography) so the site reads as
 * the same product as the mobile app.
 */

:root {
  /* Backgrounds */
  --bg:       #0A0A0E;
  --canvas:   #050507;
  --surface:  #111116;

  /* Text */
  --text:     #E4E4F0;
  --text2:    #8A8AA8;
  --text3:    #555568;

  /* Accent (matches app's blue accent) */
  --accent:   #4D8FD6;

  /* Brand pink (matches the Porkly mark) */
  --pink:     #D6529A;
}

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

html, body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* Subtle radial glow behind the hero, in the brand pink. */
  background-image:
    radial-gradient(circle at 50% 30%, rgba(214, 82, 154, 0.10), transparent 60%);
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.logo {
  width: 128px;
  height: 128px;
  margin-bottom: 8px;
  filter: drop-shadow(0 8px 24px rgba(214, 82, 154, 0.25));
}

.brand {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--text);
}

.tagline {
  font-size: 18px;
  font-weight: 500;
  color: var(--pink);
  letter-spacing: 0.2px;
  margin-top: 4px;
}

.description {
  font-size: 14px;
  font-weight: 400;
  color: var(--text2);
  max-width: 420px;
  line-height: 1.55;
  margin-top: 8px;
}

.footer {
  padding: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--text3);
}

@media (min-width: 720px) {
  .logo {
    width: 144px;
    height: 144px;
  }
  .brand {
    font-size: 56px;
  }
  .tagline {
    font-size: 22px;
  }
  .description {
    font-size: 15px;
    max-width: 480px;
  }
}
