@font-face {
  font-family: "VCR OSD Mono";
  src: url("assets/VCR_OSD_MONO_1.001.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --rec-red: #ff3b30;
  --camcorder-green: #8bc34a;
  --off-white: #f2f2f2;
  --muted: #b7bbb4;
  --dim: #747a73;
  --black: #030504;
  --panel: #0a0d0b;
  --line: rgba(242, 242, 242, 0.2);
  --green-line: rgba(139, 195, 74, 0.45);
  --shadow: rgba(0, 0, 0, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(139, 195, 74, 0.1), transparent 28rem),
    radial-gradient(circle at 80% 10%, rgba(255, 59, 48, 0.08), transparent 24rem),
    var(--black);
  color: var(--off-white);
  font-family: "VCR OSD Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 4px
    );
  opacity: 0.2;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--off-white);
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 0 0 1px var(--line);
}

.brand span {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--camcorder-green);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  width: min(1120px, calc(100% - 2rem));
  min-height: calc(100vh - 5rem);
  margin: 0 auto;
  padding: 2rem 0 5rem;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.kicker {
  color: var(--camcorder-green);
  font-size: clamp(0.84rem, 1.6vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-top: 0.9rem;
  font-size: clamp(3.1rem, 11vw, 7.8rem);
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.8);
}

h1 strong,
h2 strong,
.green {
  color: var(--camcorder-green);
}

.hero-copy p {
  max-width: 610px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 9px;
  background: var(--camcorder-green);
  color: #071007;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(139, 195, 74, 0.22);
}

.button.secondary {
  background: transparent;
  border-color: var(--green-line);
  color: var(--camcorder-green);
  box-shadow: none;
}

.button.disabled {
  cursor: not-allowed;
}

.note {
  width: 100%;
  max-width: 520px;
  margin: 0;
  color: var(--dim);
  font-size: 0.82rem;
}

.phone-frame {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
  border: 2px solid rgba(242, 242, 242, 0.54);
  border-radius: 38px;
  background: #050505;
  box-shadow: 0 28px 70px var(--shadow);
  overflow: hidden;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 0.85rem;
  left: 50%;
  z-index: 5;
  width: 8.4rem;
  height: 2rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #000;
}

.phone-frame img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  opacity: 0.88;
}

.viewfinder-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.8rem 2rem 2rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.78));
  color: var(--off-white);
  text-shadow: 0 2px 8px #000;
}

.osd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--off-white);
}

.rec {
  color: var(--rec-red);
}

.battery {
  color: var(--camcorder-green);
}

.hero-title-card {
  text-align: center;
}

.hero-title-card .icon {
  margin-bottom: 1rem;
  color: var(--camcorder-green);
  font-size: 2rem;
}

.hero-title-card h2 {
  font-size: clamp(2rem, 7vw, 3.5rem);
}

.hero-title-card p {
  margin: 1rem auto 0;
  color: var(--muted);
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: clamp(2.2rem, 7vw, 5rem);
}

.section-header p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(242, 242, 242, 0.07), rgba(242, 242, 242, 0.025));
  overflow: hidden;
}

.feature img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}

.feature-copy {
  padding: 1rem;
}

.feature h3 {
  color: var(--camcorder-green);
  font-size: 1.25rem;
}

.feature p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tier {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(10, 13, 11, 0.9);
}

.tier.pro {
  border-color: var(--green-line);
  box-shadow: inset 0 0 0 1px rgba(139, 195, 74, 0.18);
}

.tier h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.check-list li::before {
  content: ">";
  margin-right: 0.55rem;
  color: var(--camcorder-green);
}

.privacy-band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(139, 195, 74, 0.08), transparent 45%),
    rgba(242, 242, 242, 0.03);
}

.privacy-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.privacy-point {
  border-left: 2px solid var(--camcorder-green);
  padding-left: 1rem;
}

.privacy-point strong {
  display: block;
  color: var(--off-white);
  text-transform: uppercase;
}

.privacy-point span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(2.4rem, 8vw, 5.5rem);
}

.final-cta p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: var(--muted);
}

.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.86rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.policy {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 7vw, 5rem) 0;
}

.policy h1 {
  font-size: clamp(2.6rem, 9vw, 5.8rem);
}

.policy h2 {
  margin-top: 2.6rem;
  color: var(--camcorder-green);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

.policy p,
.policy li {
  color: var(--muted);
}

.policy ul {
  padding-left: 1.25rem;
}

.policy-card {
  margin: 2rem 0;
  border: 1px solid var(--green-line);
  border-radius: 10px;
  padding: 1.25rem;
  background: rgba(139, 195, 74, 0.08);
}

@media (max-width: 860px) {
  .site-header {
    position: relative;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .feature-grid,
  .comparison,
  .privacy-points {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    max-width: 360px;
  }
}

@media (max-width: 560px) {
  .nav {
    gap: 0.7rem;
    font-size: 0.78rem;
  }

  .brand span {
    display: none;
  }

  .actions,
  .button {
    width: 100%;
  }

  .viewfinder-overlay {
    padding: 3.4rem 1.3rem 1.5rem;
  }
}
