/* our-crew.net  ·  shared zine-aesthetic styles */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bungee+Inline&family=Permanent+Marker&family=Special+Elite&family=VT323&family=Inter:wght@400;500;600;700&family=Bowlby+One&display=swap');

:root {
  --display: 'Bungee Inline', sans-serif;
  --headline: 'Anton', sans-serif;
  --marker: 'Permanent Marker', cursive;
  --typer: 'Special Elite', monospace;
  --term: 'VT323', monospace;
  --body: 'Inter', system-ui, sans-serif;
  --bowl: 'Bowlby One', sans-serif;
  --paper: #F2E9D0;
  --paper-deep: #E5D8B5;
  --ink: #15110D;
  --ink-muted: #4D453A;
  --line: rgba(21,17,13,0.18);
  --red: #E2261C;
  --yellow: #F4DC1B;
  --blue: #1B4FE0;
  --pink: #FF2E78;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  background-image:
    radial-gradient(rgba(21,17,13,0.04) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  background-size: 4px 4px, 100% 100%;
  color: var(--ink);
  font-family: var(--body);
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 30px 20px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--yellow); color: var(--ink); }
a { color: inherit; }

/* ── shared card ── */
.card {
  width: 100%; max-width: 620px;
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 8px 9px 0 var(--ink), 8px 9px 0 4px var(--red);
  position: relative;
  overflow: hidden;
}
.card.small { max-width: 480px; box-shadow: 8px 9px 0 var(--ink); }

.stub {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 4px solid var(--red);
  font-family: var(--term);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stub .pulse {
  width: 11px; height: 11px; background: var(--red); border-radius: 50%;
  display: inline-block; margin-right: 12px;
  animation: blink 1.6s ease-in-out infinite;
}
.stub .right { color: var(--yellow); }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.body-area { padding: clamp(28px, 5vw, 56px); position: relative; }

/* ── stickers ── */
.sticker {
  position: absolute;
  font-family: var(--bowl);
  text-transform: uppercase;
  font-size: 12px;
  padding: 6px 10px;
  border: 2.5px solid var(--ink);
  letter-spacing: 0.04em;
  line-height: 1;
  z-index: 5;
}
.sticker.s1 { top: -14px; right: 28px; background: var(--yellow); transform: rotate(8deg); }
.sticker.s2 { top: 60px; right: -30px; background: var(--red); color: var(--paper); transform: rotate(-12deg); }
.sticker.s3 { top: 120px; left: -20px; background: var(--blue); color: var(--paper); transform: rotate(-6deg); }

/* ── crew wordmark ── */
.crew-mark {
  text-align: center;
  margin-bottom: 22px;
}
.crew-mark .crew {
  font-family: var(--display);
  font-size: 42px;
  transform: rotate(-2deg);
  display: inline-block;
  line-height: 1;
}
.crew-mark .net {
  font-family: var(--marker);
  color: var(--red);
  font-size: 22px;
  transform: rotate(3deg);
  display: inline-block;
  margin-left: 6px;
}

/* ── label/typing ── */
.label-row {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 18px;
  font-family: var(--typer);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.marker-line {
  font-family: var(--marker);
  font-size: 22px;
  color: var(--red);
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1;
}
.your-name {
  font-family: var(--display);
  font-size: clamp(40px, 8vw, 68px);
  line-height: 0.95;
  margin: 8px 0 0;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.your-name .red { color: var(--red); }

hr.tear {
  border: none; height: 0;
  border-top: 2.5px dashed var(--ink);
  margin: 28px 0;
  position: relative;
}
hr.tear::before, hr.tear::after {
  content: '';
  position: absolute; top: -10px;
  width: 18px; height: 18px;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 50%;
}
hr.tear::before { left: -9px; border-right: none; border-top: none; }
hr.tear::after  { right: -9px; border-left: none; border-top: none; }

.pitch {
  font-family: var(--typer);
  font-size: 16px;
  line-height: 1.65;
  margin: 20px 0;
}
.pitch mark {
  background: var(--yellow);
  padding: 0 4px;
  color: var(--ink);
}
.pitch strong { font-family: var(--bowl); font-weight: 400; letter-spacing: 0.02em; }

.what-it-is {
  background: var(--ink);
  color: var(--paper);
  padding: 20px 22px 16px;
  margin: 24px 0;
  font-family: var(--typer);
  font-size: 14px;
  line-height: 1.6;
  position: relative;
}
.what-it-is::before {
  content: '★ THE DEAL ★';
  position: absolute; top: -14px; left: 18px;
  background: var(--red);
  color: var(--paper);
  font-family: var(--bowl);
  font-size: 12px;
  padding: 4px 10px;
  letter-spacing: 0.06em;
  border: 2px solid var(--ink);
}
.what-it-is ul { margin: 6px 0 0; padding-left: 18px; }
.what-it-is li { margin: 4px 0; }
.what-it-is .key { color: var(--yellow); font-weight: 600; }

/* ── buttons ── */
.btn {
  display: block; width: 100%;
  padding: 18px 22px;
  border: 3px solid var(--ink);
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-align: center;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn.alt { background: var(--paper); color: var(--ink); }
.btn.dark { background: var(--ink); color: var(--paper); box-shadow: 5px 5px 0 var(--red); }
.btn.dark:hover { box-shadow: 7px 7px 0 var(--red); }
.btn .sub {
  display: block;
  font-family: var(--typer);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
  font-weight: 400;
}
.btn.dark .sub { color: var(--paper-deep); }

.cta-row { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 30px 0 16px; }

.from-block {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 2px dashed var(--line);
  display: flex; justify-content: space-between; align-items: end;
  font-family: var(--typer);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.from-block .sig {
  font-family: var(--marker);
  font-size: 22px;
  color: var(--red);
  transform: rotate(-2deg);
  line-height: 1;
}

.fine {
  margin-top: 18px;
  padding: 14px;
  background: var(--paper-deep);
  border: 1px dashed var(--ink);
  font-family: var(--typer);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.fine .num { font-family: var(--bowl); color: var(--red); margin-right: 4px; }

.footer-stub {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 24px;
  border-top: 4px solid var(--red);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--term);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-stub .right { color: var(--yellow); }

.card-strip {
  margin-top: 24px;
  padding: 14px;
  border: 2.5px solid var(--ink);
  background: var(--red);
  color: var(--paper);
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center;
  font-family: var(--typer);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: rotate(-0.5deg);
}
.card-strip .num-big {
  font-family: var(--bowl);
  font-size: 38px;
  color: var(--yellow);
  line-height: 1;
}
.card-strip .right-block { text-align: right; }
.card-strip .right-block strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  color: var(--paper);
  letter-spacing: 0.01em;
}

/* ── login form bits ── */
.body-area .hello {
  font-family: var(--marker);
  font-size: 30px;
  color: var(--ink);
  text-align: center;
  line-height: 1.05;
  transform: rotate(-1deg);
  margin: 0 0 6px;
}
.body-area .hello .red { color: var(--red); }
.body-area .sub-hello {
  text-align: center;
  font-family: var(--typer);
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
label {
  display: block;
  font-family: var(--bowl);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.input {
  width: 100%; padding: 14px 16px;
  border: 3px solid var(--ink);
  background: var(--paper);
  font-family: var(--typer);
  font-size: 16px;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
.input:focus { outline: none; background: var(--yellow); box-shadow: 6px 6px 0 var(--ink); transform: translate(-1px, -1px); }

.helpers {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 2px dashed var(--line);
  font-family: var(--typer);
  font-size: 11px;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.7;
}
.helpers a { color: var(--red); border-bottom: 1px solid currentColor; text-decoration: none; }

.fine-bottom {
  text-align: center;
  margin-top: 18px;
  font-family: var(--marker);
  font-size: 16px;
  color: var(--ink);
  transform: rotate(-1deg);
}

.corner-tape {
  position: absolute; top: -14px; left: -8px;
  width: 90px; height: 26px;
  background: rgba(244, 220, 27, 0.7);
  border-left: 1px dashed rgba(0,0,0,0.2);
  border-right: 1px dashed rgba(0,0,0,0.2);
  transform: rotate(-12deg);
  z-index: 5;
}

/* ── home placeholder ── */
.home-card {
  width: 100%; max-width: 720px;
  text-align: center;
  padding: 40px;
}
.home-card .big {
  font-family: var(--display);
  font-size: clamp(44px, 8vw, 80px);
  line-height: 1;
  margin: 14px 0 8px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.home-card .big .red { color: var(--red); }
.home-card .stamp {
  display: inline-block;
  font-family: var(--bowl);
  font-size: 14px;
  background: var(--yellow);
  border: 2.5px solid var(--ink);
  padding: 6px 12px;
  transform: rotate(-3deg);
  margin: 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.home-card .meta {
  font-family: var(--typer);
  font-size: 14px;
  color: var(--ink-muted);
  margin: 14px 0;
  line-height: 1.7;
}
.home-card form {
  display: inline-block;
}
.home-card .logout-btn {
  font-family: var(--typer);
  font-size: 11px;
  color: var(--ink-muted);
  background: none;
  border: 1px dashed var(--ink-muted);
  padding: 4px 10px;
  cursor: pointer;
  margin-top: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── error page ── */
.error-card { text-align: center; padding: 50px 30px; }
.error-card .big {
  font-family: var(--display);
  font-size: 42px;
  margin-bottom: 12px;
  color: var(--red);
  text-transform: uppercase;
}
.error-card .body {
  font-family: var(--typer);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 36ch;
  margin: 0 auto 24px;
}
