/* Y2K Cam site — Win95/Y2K system. No external requests: system fonts only. */
:root {
  --teal: #008080;
  --silver: #c0c0c0;
  --silver-dark: #808080;
  --navy: #000080;
  --pink: #ff4fa3;
  --yellow: #ffd83d;
  --red: #e01414;
  --ink: #111;
  --sky-1: #9fd0f5;
  --sky-2: #cfe9fb;
  --mono: "Courier New", ui-monospace, Menlo, monospace;
  --sans: "Arial Black", Arial, Helvetica, sans-serif;
  --body: Verdana, Geneva, Tahoma, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  background:
    radial-gradient(ellipse 55% 28% at 18% 22%, rgba(255,255,255,.95) 0%, rgba(255,255,255,0) 70%),
    radial-gradient(ellipse 45% 22% at 78% 12%, rgba(255,255,255,.9) 0%, rgba(255,255,255,0) 70%),
    radial-gradient(ellipse 60% 26% at 62% 55%, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 70%),
    radial-gradient(ellipse 50% 24% at 10% 75%, rgba(255,255,255,.9) 0%, rgba(255,255,255,0) 70%),
    linear-gradient(180deg, var(--sky-1) 0%, var(--sky-2) 55%, var(--sky-1) 100%);
  background-attachment: fixed;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 20px; }

/* ---- Win95 chrome ---- */
.win {
  background: var(--silver);
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  box-shadow: 4px 4px 0 rgba(0,0,0,.25);
}
.win-title {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(90deg, var(--navy), #1084d0);
  color: #fff;
  padding: 5px 8px;
  font-family: var(--body);
  font-weight: bold;
  font-size: 13px;
  letter-spacing: .04em;
  margin: 2px;
}
.win-title .dots { display: flex; gap: 4px; }
.win-title .dots span {
  width: 16px; height: 14px; background: var(--silver);
  border: 1px solid; border-color: #fff #404040 #404040 #fff;
  font-size: 9px; line-height: 12px; text-align: center; color: #000;
  font-family: var(--body); font-weight: bold;
}
.win-body { padding: 22px; }
@media (min-width: 700px) { .win-body { padding: 32px; } }

/* ---- WordArt headline ---- */
.wordart {
  font-family: var(--sans);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--pink);
  -webkit-text-stroke: 1px #b3006b;
  text-shadow: 3px 3px 0 var(--yellow), 5px 5px 0 rgba(0,0,0,.28);
  letter-spacing: .01em;
  line-height: 1.08;
}
h1.wordart { font-size: clamp(34px, 6.5vw, 62px); }
h2.wordart { font-size: clamp(24px, 4vw, 38px); }

/* ---- OSD (VHS on-screen display) ---- */
.osd {
  font-family: var(--mono);
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.osd-dark {
  font-family: var(--mono);
  font-weight: bold;
  color: var(--teal);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 13px;
}
.rec-dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  background: var(--red); margin-right: 7px; vertical-align: baseline;
  animation: blink 1.2s steps(1) infinite;
}
@keyframes blink { 50% { opacity: .15; } }

/* ---- Buttons ---- */
.btn95 {
  display: inline-block;
  background: var(--silver);
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  box-shadow: 2px 2px 0 rgba(0,0,0,.3);
  padding: 12px 26px;
  font-family: var(--body);
  font-weight: bold;
  font-size: 15px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor: pointer;
}
.btn95:active { border-color: #404040 #fff #fff #404040; }
.btn95.primary { background: var(--red); color: #fff; }
.btn-appstore {
  display: inline-flex; align-items: center; gap: 12px;
  background: #000; color: #fff; text-decoration: none;
  padding: 12px 24px; border-radius: 12px;
  border: 2px solid #000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.15;
  transition: transform .12s ease;
}
.btn-appstore:hover { transform: scale(1.04); }
.btn-appstore svg { width: 30px; height: 30px; flex: none; }
.btn-appstore .small { display: block; font-size: 11px; opacity: .85; }
.btn-appstore .big { display: block; font-size: 20px; font-weight: 600; }

/* ---- Header / nav ---- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--silver);
  border-bottom: 2px solid #404040;
  box-shadow: 0 2px 0 rgba(0,0,0,.2);
}
.site-nav .inner {
  max-width: 1060px; margin: 0 auto; padding: 8px 20px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.site-nav img { width: 34px; height: 34px; border-radius: 8px; }
.site-nav .brand {
  font-family: var(--sans); font-weight: 900; font-size: 16px;
  color: var(--teal); text-decoration: none; text-transform: uppercase;
}
.site-nav .links { margin-left: auto; display: flex; gap: 6px; flex-wrap: wrap; }
.site-nav .links a {
  text-decoration: none; color: #000; font-size: 13px; font-weight: bold;
  padding: 7px 12px; background: var(--silver);
  border: 2px solid; border-color: #fff #404040 #404040 #fff;
}
.site-nav .links a:active { border-color: #404040 #fff #fff #404040; }
.site-nav .links a.dl { background: var(--red); color: #fff; }

/* ---- Sections ---- */
section { padding: 56px 0; }
.section-kicker { text-align: center; margin-bottom: 8px; }
.section-title { text-align: center; margin-bottom: 34px; }

/* Hero */
.hero { padding: 72px 0 56px; text-align: center; }
.hero .icon {
  width: 108px; height: 108px; border-radius: 24px; margin: 0 auto 22px;
  box-shadow: 0 10px 30px rgba(0,0,50,.3), 0 0 0 3px #fff;
}
.hero p.sub {
  max-width: 620px; margin: 20px auto 8px; font-size: 18px; color: #10222e;
}
.hero .stars { margin: 10px 0 26px; font-size: 14px; color: #10222e; }
.hero .stars b { color: #c77400; letter-spacing: 2px; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.hero .free-line { margin-top: 14px; font-size: 13px; color: #23404f; }

/* Screenshot strip */
.shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (min-width: 760px) { .shots { grid-template-columns: repeat(4, 1fr); } }
.shots figure { text-align: center; }
.shots img {
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0,0,50,.28);
  border: 3px solid #fff;
}
.shots figcaption { margin-top: 10px; font-size: 12px; font-weight: bold; text-transform: uppercase; letter-spacing: .08em; color: #23404f; }

/* Steps */
.steps { display: grid; gap: 18px; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { padding: 0; }
.step .win-body { padding: 20px; }
.step .num {
  font-family: var(--sans); font-weight: 900; font-size: 30px; color: var(--teal);
  display: block; margin-bottom: 6px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .03em; }
.step p { font-size: 14px; color: #222; }

/* Feature list */
.features { display: grid; gap: 14px; }
@media (min-width: 700px) { .features { grid-template-columns: repeat(2, 1fr); } }
.features li {
  list-style: none; background: rgba(255,255,255,.75);
  border: 2px solid; border-color: #fff #9ab #9ab #fff;
  padding: 12px 16px; font-size: 14.5px;
}
.features li b { color: var(--teal); }

/* Guide cards */
.guide-grid { display: grid; gap: 16px; }
@media (min-width: 700px) { .guide-grid { grid-template-columns: repeat(2, 1fr); } }
.guide-card {
  display: block; text-decoration: none; color: #000;
  background: var(--silver);
  border: 2px solid; border-color: #fff #404040 #404040 #fff;
  box-shadow: 3px 3px 0 rgba(0,0,0,.22);
  padding: 18px 20px;
}
.guide-card:hover { background: #d5d5d5; }
.guide-card .tag { font-family: var(--mono); font-size: 11px; font-weight: bold; color: var(--teal); letter-spacing: .12em; text-transform: uppercase; }
.guide-card h3 { font-size: 17px; margin: 6px 0 6px; line-height: 1.35; }
.guide-card p { font-size: 13.5px; color: #333; }
.guide-card .more { display: inline-block; margin-top: 8px; font-size: 12px; font-weight: bold; color: var(--navy); }

/* FAQ */
.faq details {
  background: var(--silver);
  border: 2px solid; border-color: #fff #404040 #404040 #fff;
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer; padding: 14px 18px; font-weight: bold; font-size: 15px;
  list-style: none; position: relative; padding-right: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 20px; background: var(--silver);
  border: 1px solid; border-color: #fff #404040 #404040 #fff;
  text-align: center; line-height: 18px; font-family: var(--mono); font-weight: bold;
}
.faq details[open] summary::after { content: "\2212"; }
.faq .a { padding: 0 18px 16px; font-size: 14.5px; color: #222; }
.faq .a a { font-weight: bold; }

/* Big CTA */
.big-cta { text-align: center; }
.big-cta .win-body { padding: 44px 24px; }
.big-cta p { max-width: 560px; margin: 14px auto 24px; font-size: 16px; }

/* Footer */
footer {
  background: var(--teal);
  color: #dff4f4;
  padding: 36px 0 90px;
  margin-top: 40px;
  border-top: 3px solid #004f4f;
  font-size: 13.5px;
}
footer a { color: #fff; }
footer .cols { display: grid; gap: 26px; }
@media (min-width: 700px) { footer .cols { grid-template-columns: 2fr 1fr 1fr; } }
footer h4 { font-family: var(--mono); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; margin-bottom: 10px; color: var(--yellow); }
footer ul { list-style: none; }
footer li { margin-bottom: 7px; }
footer .legal { margin-top: 28px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.25); font-size: 12px; color: #bfe6e6; }

/* Sticky mobile download bar */
.sticky-dl {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--silver);
  border-top: 2px solid #fff;
  box-shadow: 0 -3px 10px rgba(0,0,0,.25);
  padding: 8px 14px;
  display: flex; align-items: center; gap: 12px; justify-content: center;
}
.sticky-dl img { width: 34px; height: 34px; border-radius: 8px; }
.sticky-dl .t { font-size: 12px; font-weight: bold; line-height: 1.3; }
.sticky-dl .t span { display: block; font-weight: normal; color: #333; font-size: 11px; }
.sticky-dl a.btn95 { padding: 9px 18px; font-size: 13px; margin-left: 6px; }
@media (min-width: 900px) { .sticky-dl { display: none; } footer { padding-bottom: 36px; } }

/* ---- Guide article pages ---- */
.article { max-width: 780px; margin: 0 auto; }
.article .win-body { font-size: 16px; }
.article h1 { font-size: clamp(26px, 4.5vw, 40px); }
.article .lede {
  font-size: 17.5px; background: #fffbe6; border: 2px solid var(--yellow);
  padding: 14px 18px; margin: 20px 0;
}
.article h2 { font-size: 22px; margin: 34px 0 12px; color: var(--teal); }
.article h3 { font-size: 17px; margin: 24px 0 8px; }
.article p { margin-bottom: 14px; }
.article ul, .article ol { margin: 0 0 16px 24px; }
.article li { margin-bottom: 8px; }
.article .steps-box {
  background: rgba(255,255,255,.8); border: 2px solid; border-color: #fff #9ab #9ab #fff;
  padding: 18px 22px; margin: 18px 0;
}
.article .cta-inline { text-align: center; margin: 30px 0 8px; }
.article .cta-inline .note { font-size: 12.5px; color: #444; margin-top: 8px; }
.article img.shot {
  border-radius: 18px; border: 3px solid #fff; box-shadow: 0 8px 24px rgba(0,0,50,.28);
  margin: 20px auto; max-height: 560px;
}
.breadcrumb { font-size: 12.5px; margin-bottom: 14px; font-family: var(--mono); }
.related { margin-top: 36px; padding-top: 18px; border-top: 2px dashed var(--silver-dark); }
.related h2 { margin-top: 0; }
