@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,700;0,900;1,900&display=swap');

:root {
  /* ── PollCo brand palette ──────────────────────────── */
  --brand-purple: #514B9D;   /* primary — wordmark */
  --brand-green:  #4B9D7A;
  --brand-orange: #DE924F;
  --brand-blue:   #4B6E9D;

  --color-bg: #0d0d12;
  --color-text: #f2f1f7;
  --color-muted: #9c9aab;
  --color-accent: #afa9ec;
  --color-border: rgba(255, 255, 255, 0.10);
  /* ──────────────────────────────────────────────────── */

  --max-width: 720px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: radial-gradient(1100px 540px at 50% -8%, rgba(127, 119, 221, 0.22), rgba(13, 13, 18, 0) 70%), var(--color-bg);
  min-height: 100vh;
  padding: 0 24px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

header {
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text);
}

.brand img { height: 48px; width: auto; }

.brand-name {
  font-weight: 600;
  font-size: 18px;
}

nav { display: flex; gap: 20px; flex-wrap: wrap; }

nav a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 15px;
}

nav a:hover, nav a.active { color: var(--color-accent); }

main { padding: 24px 0 64px; }

.hero-image {
  display: block;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(300px, 40vw, 540px);
  object-fit: cover;
  object-position: center;
  margin-top: 0;
  margin-bottom: 44px;
}

h1 {
  font-weight: 900;
  font-style: italic;
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

h2 {
  font-weight: 700;
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}

p { margin-bottom: 16px; }

p.lede {
  margin-bottom: 16px;
}

a { color: var(--color-accent); }

ul { padding-left: 20px; margin-bottom: 16px; }

li { margin-bottom: 6px; }

.card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}

footer {
  border-top: 1px solid var(--color-border);
  padding: 24px 0 40px;
  color: var(--color-muted);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

footer a { color: var(--color-muted); }

.footer-address {
  font-size: 11px;
  opacity: 0.4;
}

/* Product showcase — polly.fitness in a browser window */
.site-window {
  margin-top: 32px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.site-window__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f1f1f3;
  border-bottom: 1px solid var(--color-border);
}

.site-window__dots { display: flex; gap: 6px; }
.site-window__dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
  background: #d0d0d4;
}
.site-window__dots i:nth-child(1) { background: #ff5f57; }
.site-window__dots i:nth-child(2) { background: #febc2e; }
.site-window__dots i:nth-child(3) { background: #28c840; }

.site-window__url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: #6b6b6b;
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
}

.polly-hero {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #0e3a40, #0a2a2f);
}

.polly-hero__text { flex: 1 1 52%; }

.polly-hero__logo {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
}

.polly-hero__headline {
  font-family: "Roboto Condensed", "Roboto", sans-serif;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: #ff8a1f;
  margin: 0 0 1rem;
}

.polly-hero__tagline {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  color: #c9d6d6;
  margin: 0 0 1.75rem;
  max-width: 360px;
}

.polly-hero__badge { display: inline-block; }
.polly-hero__badge img { height: 46px; width: auto; display: block; }

.polly-hero__image { flex: 1 1 40%; display: flex; justify-content: center; }
.polly-hero__image img { max-width: 100%; height: auto; max-height: 360px; }

.product-desc {
  margin-top: 16px;
  text-align: center;
  font-size: 15px;
  color: var(--color-muted);
}

.more-coming {
  margin-top: 32px;
  text-align: center;
  color: var(--color-muted);
  font-size: 14px;
}

@media (max-width: 560px) {
  .polly-hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  .polly-hero__tagline { margin-left: auto; margin-right: auto; }
  .polly-hero__image img { max-height: 300px; }
}

@media (max-width: 480px) {
  body { padding: 0 18px; }
  h1 { font-size: 28px; }
  main { padding: 32px 0 48px; }
}
