/* Scopey prelaunch — static interim site for scopeyapp.com.
   Self-contained: no fonts, no JS, no build step. Mirrors the design
   language of the coming Next.js site (web/), incl. the evening-arena
   hero with blurred striped rails. */
:root {
  --bg: #f6f7f9;
  --card: #ffffff;
  --text: #1a1d21;
  --muted: #6b7280;
  --border: #e3e6ea;
  --brand: #2d6cdf;
  --brand-dark: #1f54b3;
  --radius: 12px;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}
html { -webkit-text-size-adjust: 100%; }
body { min-height: 100dvh; display: flex; flex-direction: column; }
main { flex: 1 0 auto; width: 100%; }
img, svg { max-width: 100%; }
a { color: var(--brand); }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 40px 24px; }
@media (max-width: 640px) { .container { padding: 24px 16px; } }
.stack > * + * { margin-top: 20px; }
.muted { color: var(--muted); }
.center { text-align: center; }

/* Header */
.site-header { background: var(--card); border-bottom: 1px solid var(--border); }
.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 24px; max-width: 1100px; margin: 0 auto;
}
.site-brand { font-weight: 700; font-size: 18px; color: var(--text); text-decoration: none; }
.site-links { display: flex; gap: 18px; }
.site-links a { color: var(--text); text-decoration: none; font-size: 14px; padding: 8px 2px; }
.site-links a:hover { color: var(--brand); }

/* HERO — evening arena: dark sand + centre vignette; the jumps are
   blurred striped rails (spans below). */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 64px 24px 56px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(65% 85% at 50% 45%, rgba(22, 17, 12, 0.55), transparent 72%),
    linear-gradient(160deg, #4c4033 0%, #352c21 55%, #251f17 100%);
}
.hero > :not(.hero-jumps) { position: relative; }
.hero h1 {
  font-size: clamp(32px, 7vw, 52px);
  line-height: 1.12;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.hero .tagline { font-size: 18px; margin: 0 auto 8px; max-width: 560px; color: rgba(255,255,255,0.88); }
.hero .status {
  display: inline-block;
  margin: 0 0 26px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-jumps { position: absolute; inset: 0; pointer-events: none; }
.hero-jumps span { position: absolute; display: block; border-radius: 999px; filter: blur(12px); }
.hero-jumps span:nth-child(1) { width: 250px; height: 24px; right: 4%; top: 16%; transform: rotate(-12deg); opacity: .55;
  background: repeating-linear-gradient(90deg, #d84638 0 38px, #f3efe6 38px 62px); }
.hero-jumps span:nth-child(2) { width: 210px; height: 21px; left: 3%; top: 36%; transform: rotate(15deg); opacity: .5;
  background: repeating-linear-gradient(90deg, #4a80d0 0 34px, #f3efe6 34px 56px); }
.hero-jumps span:nth-child(3) { width: 260px; height: 22px; right: 12%; bottom: 12%; transform: rotate(-18deg); opacity: .45;
  background: repeating-linear-gradient(90deg, #eec658 0 36px, #f3efe6 36px 58px); }
.hero-jumps span:nth-child(4) { width: 190px; height: 18px; left: 8%; bottom: 9%; transform: rotate(4deg); opacity: .4;
  background: repeating-linear-gradient(90deg, #68a864 0 30px, #f3efe6 30px 50px); }
.hero-jumps span:nth-child(5) { width: 130px; height: 12px; left: 42%; top: 8%; transform: rotate(8deg); opacity: .3; filter: blur(9px);
  background: repeating-linear-gradient(90deg, #d84638 0 22px, #f3efe6 22px 38px); }
/* oxer: parallel pair */
.hero-jumps span:nth-child(6), .hero-jumps span:nth-child(7) {
  width: 230px; height: 20px; right: 2%; transform: rotate(11deg); opacity: .48;
  background: repeating-linear-gradient(90deg, #4a80d0 0 34px, #f3efe6 34px 56px); }
.hero-jumps span:nth-child(6) { top: 55%; }
.hero-jumps span:nth-child(7) { top: 66%; right: 3%; }
.hero-jumps span:nth-child(8), .hero-jumps span:nth-child(9) {
  width: 200px; height: 18px; left: 4%; transform: rotate(-15deg); opacity: .45;
  background: repeating-linear-gradient(90deg, #e4843e 0 30px, #f3efe6 30px 50px); }
.hero-jumps span:nth-child(8) { top: 7%; }
.hero-jumps span:nth-child(9) { top: 17%; left: 5%; }
@media (max-width: 640px) {
  .hero { padding: 44px 16px 36px; border-radius: 16px; }
  .hero-jumps { transform: scale(0.72); transform-origin: 50% 40%; }
}

/* Signup form (Listmonk) */
.signup {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  max-width: 520px; margin: 0 auto;
}
.signup input[type="email"] {
  flex: 1 1 260px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}
.signup button {
  flex: 0 0 auto;
  padding: 13px 22px;
  border: none;
  border-radius: 10px;
  background: #fff;
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.signup button:hover { background: #eef1f5; }
.signup-hint { margin-top: 14px; font-size: 13px; color: rgba(255, 255, 255, 0.75); }
.signup-hint a { color: #fff; }

/* Section headers */
/* Luft mellan hero och nästa sektion (En titt i appen) — .stack:ens
   20px är för tajt efter det stora färgfältet. */
.hero + .section-quiet { margin-top: 56px; }
.section-quiet h2 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin: 0 0 16px;
}

/* Filmen på startsidan (En titt i appen) — full bredd, hela ytan är
   en länk till How it works. Bakgrundsfärgen matchar filmens
   passepartout (appens canvas) så letterbox-kanterna försvinner. */
.app-film { display: block; }
.app-film video {
  display: block;
  width: 100%;
  background: #f7f7f7;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* Om oss-glimten på startsidan: två runda porträtt + en mening + länk
   vidare till about. Porträtten överlappar lätt, som en liten duo. */
.about-teaser {
  display: flex; align-items: center; gap: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.about-teaser .faces { display: flex; flex: 0 0 auto; }
.about-teaser .faces img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover; object-position: center 30%;
  border: 2px solid var(--card);
  display: block;
}
.about-teaser .faces img + img { margin-left: -14px; }
.about-teaser p { margin: 0; }
@media (max-width: 560px) {
  .about-teaser { flex-direction: column; text-align: center; }
}

/* Stegkorten på How it works: skärmbild ovanför texten i varje kort. */
.steps .step-shot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 4px 0 12px;
}

/* Cards / features */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; padding: 0; margin: 0; list-style: none; }
.features li { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; }
.features b { display: block; margin-bottom: 4px; }
/* Grupprubrik mellan feature-korten (Skapa / Skriv ut & dela / …):
   samma dämpade versalstil som sektionshuvudena, ett snäpp mindre. */
.features-group {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 26px 0 12px;
  font-weight: 600;
}
h2 + .features-group { margin-top: 4px; }

/* Process steps (Design → Layout → Export) */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; padding: 0; margin: 0; list-style: none; counter-reset: step; }
.steps li {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px; counter-increment: step;
}
.steps li::before {
  content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; margin-bottom: 8px;
  border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 700; font-size: 14px;
}
.steps b { display: block; margin-bottom: 4px; }

/* Footer */
.site-footer { background: var(--card); border-top: 1px solid var(--border); margin-top: 48px; }
.site-footer .container { padding-top: 28px; padding-bottom: 28px; }
.footer-about { max-width: 640px; font-size: 14px; color: var(--muted); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 14px; font-size: 14px; }
.footer-lang { margin-top: 14px; font-size: 14px; }
.footer-lang b { font-weight: 600; }
/* Sociala ikoner: inline-SVG i currentColor, dämpade tills hover. */
.footer-social { display: flex; gap: 16px; margin-top: 14px; }
.footer-social a { color: var(--muted); display: inline-flex; }
.footer-social a:hover { color: var(--brand); }
.footer-social svg { width: 20px; height: 20px; }
.cta-inline { display: inline-block; margin-top: 6px; }

h2 { font-size: 22px; margin: 0 0 10px; }
h3 { font-size: 17px; margin: 20px 0 6px; }
p { margin: 0 0 10px; }

/* Kontaktsidan: formulär som komponerar ett mejl (mailto) — statisk
   sajt, ingen backend. Generisk input-styling + form-grid. */
.contact-form { display: grid; gap: 12px; max-width: 560px; }
.contact-form input[type="text"],
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button {
  justify-self: start;
  padding: 12px 22px;
  border: none;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.contact-form button:hover { background: var(--brand-dark); }
/* Honeypot: off-screen for humans, filled by bots. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 14px; }
.form-status.ok { color: #1d7a3a; }
.form-status.err { color: #c0392b; }

/* About us på kontaktsidan: teamet i två kort. Bilderna har olika
   format (porträtt/kvadrat) — fast aspect + object-fit: cover ger
   en jämn rad ändå. */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 560px) { .team { grid-template-columns: 1fr; } }
.team figure { margin: 0; }
.team img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}
.team figcaption { margin-top: 10px; }
.team .team-name { font-weight: 600; }
.team .team-role { color: var(--muted); font-size: 14px; }
.team p { margin-top: 6px; font-size: 14px; }
