@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800&family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap");

:root {
  --ink: #14181f;
  --ink-2: #1e2530;
  --paper: #e6dcc0;
  --paper-line: #f2ead3;
  --paper-muted: #b8af98;
  --brass: #a97c3f;
  --brass-light: #c99a55;
  --ring-red: #8b3a2b;
  --border-faint: rgba(230, 220, 192, 0.14);
  --ok: #6b8f71;
  --danger: #c45c4a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--paper-line);
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--brass-light);
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

h1,
h2,
h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--paper-line);
}

.mono {
  font-family: "IBM Plex Mono", monospace;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--brass);
  color: var(--ink);
  padding: 8px 14px;
  z-index: 100;
}

.skip-link:focus {
  left: 8px;
}

/* NAV */
header nav {
  border-bottom: 1px solid var(--border-faint);
  position: sticky;
  top: 0;
  background: rgba(20, 24, 31, 0.92);
  backdrop-filter: blur(6px);
  z-index: 20;
}

nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo-text {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--paper-line);
}

.logo-text span {
  color: var(--brass-light);
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--paper-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--paper-line);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-cta {
  background: var(--brass);
  color: var(--ink);
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--brass);
}

.nav-cta:hover {
  background: var(--brass-light);
  border-color: var(--brass-light);
  color: var(--ink);
}

.lang-switch {
  display: flex;
  gap: 6px;
}

.lang-switch a {
  appearance: none;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  padding: 4px;
  line-height: 0;
  display: inline-flex;
}

.lang-switch a[aria-pressed="true"],
.lang-switch a:hover,
.lang-switch a[aria-current="true"] {
  border-color: var(--brass-light);
}

.flag {
  width: 26px;
  height: 18px;
  display: block;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(230, 220, 192, 0.2);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-faint);
  color: var(--paper-line);
  width: 42px;
  height: 42px;
  border-radius: 2px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--paper-line);
  margin: 4px auto;
}

/* HERO */
.hero {
  padding: 88px 0 96px;
  border-bottom: 1px solid var(--border-faint);
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: var(--brass-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brass-light);
}

.hero h1 {
  font-size: 52px;
  line-height: 1.03;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--brass-light);
}

.hero p.lead {
  font-size: 17px;
  color: var(--paper-muted);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--brass);
  color: var(--ink);
  padding: 15px 30px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--brass-light);
  color: var(--ink);
}

.btn-ghost {
  color: var(--paper-line);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--paper-muted);
  padding-bottom: 2px;
}

.play-badge {
  display: inline-block;
  height: 52px;
}

.play-badge img {
  height: 52px;
  width: auto;
}

/* SCOPE VIEW */
.scope-frame {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--ink-2) 0%, #0b0e13 78%, #05070a 100%);
  border: 8px solid #0a0d12;
  box-shadow: 0 0 0 1px rgba(230, 220, 192, 0.08), inset 0 0 60px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.scope-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 90px 20px rgba(0, 0, 0, 0.75);
  pointer-events: none;
}

.scope-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scope-svg {
  width: 78%;
  height: 78%;
}

.scope-caption {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--paper-muted);
  letter-spacing: 0.08em;
  z-index: 1;
}

@keyframes ping {
  0% {
    r: 5;
    opacity: 1;
  }
  70% {
    r: 22;
    opacity: 0;
  }
  100% {
    r: 22;
    opacity: 0;
  }
}

.hit-ping {
  animation: ping 2.2s ease-out infinite;
}

/* SECTIONS */
.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border-faint);
}

.section--flush {
  border-bottom: none;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head .eyebrow {
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 36px;
  line-height: 1.08;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--paper-muted);
  font-size: 16px;
}

.page-hero {
  padding: 56px 0 8px;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--paper-muted);
  max-width: 620px;
}

/* HOW IT WORKS */
.rings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-faint);
  border: 1px solid var(--border-faint);
}

.ring-step {
  background: var(--ink);
  padding: 40px 32px;
}

.ring-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: var(--brass-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.ring-num .dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--brass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--brass-light);
  flex-shrink: 0;
}

.ring-step h3 {
  font-size: 20px;
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--paper-line);
  margin-bottom: 10px;
  font-family: "IBM Plex Sans", sans-serif;
}

.ring-step p {
  color: var(--paper-muted);
  font-size: 14.5px;
}

/* FEATURES / TARGETS */
.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper-line);
  font-size: 15px;
}

.feature-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--brass-light);
  box-shadow: inset 0 0 0 3px var(--ink), inset 0 0 0 5px var(--brass-light);
  flex-shrink: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.split--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.split img,
.media-frame img {
  width: 100%;
  border-radius: 3px;
  border: 1px solid var(--border-faint);
}

.media-frame figcaption,
.figure figcaption {
  margin-top: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--paper-muted);
}

.targets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.target-card {
  background: var(--ink-2);
  border: 1px solid var(--border-faint);
  padding: 28px 24px;
  border-radius: 3px;
}

.target-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 24px;
  border-radius: 2px;
}

.target-card h3 {
  font-size: 19px;
  text-transform: none;
  letter-spacing: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  color: var(--paper-line);
  margin-bottom: 8px;
}

.target-card p {
  color: var(--paper-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.target-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--brass-light);
}

/* PRICING */
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
}

.plan-card {
  border: 1px solid var(--border-faint);
  padding: 40px 32px;
  border-radius: 3px;
  background: var(--ink-2);
}

.plan-card.pro {
  border-color: var(--brass);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--brass);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", monospace;
}

.plan-card h3 {
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--paper-muted);
  margin-bottom: 6px;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  font-weight: 500;
}

.plan-price {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: 38px;
  color: var(--paper-line);
  margin-bottom: 24px;
}

.plan-price span {
  font-size: 15px;
  color: var(--paper-muted);
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
}

.plan-list {
  list-style: none;
}

.plan-list li {
  padding: 10px 0;
  border-top: 1px solid var(--border-faint);
  font-size: 14.5px;
  color: var(--paper-muted);
  display: flex;
  gap: 10px;
}

.plan-list li:first-child {
  border-top: none;
}

.plan-list li::before {
  content: "—";
  color: var(--brass-light);
  flex-shrink: 0;
}

.plan-list li.included {
  color: var(--paper-line);
}

/* PHONES / GALLERY */
.phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.phone {
  background: var(--ink-2);
  border: 1px solid var(--border-faint);
  border-radius: 18px;
  padding: 14px;
}

.phone-screen {
  background: #05070a;
  border-radius: 10px;
  aspect-ratio: 9 / 17.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.phone-screen--photo {
  padding: 0;
}

.phone-screen--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-caption {
  text-align: center;
  font-size: 13px;
  color: var(--paper-muted);
  margin-top: 16px;
  font-family: "IBM Plex Mono", monospace;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery figure {
  background: var(--ink-2);
  border: 1px solid var(--border-faint);
  border-radius: 3px;
  padding: 10px;
}

.gallery img {
  width: 100%;
  border-radius: 2px;
}

.gallery figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--paper-muted);
  font-family: "IBM Plex Mono", monospace;
}

/* PROSE / STEPS / FAQ */
.prose {
  max-width: 720px;
  color: var(--paper-muted);
  font-size: 16px;
}

.prose h2,
.prose h3 {
  text-transform: none;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--paper-line);
  margin: 32px 0 10px;
}

.prose h2 {
  font-size: 22px;
}

.prose h3 {
  font-size: 18px;
}

.prose p + p {
  margin-top: 14px;
}

.prose ul,
.prose ol {
  margin: 12px 0 12px 22px;
}

.prose li {
  margin: 6px 0;
}

.prose a {
  color: var(--brass-light);
}

.steps {
  display: grid;
  gap: 40px;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-faint);
}

.step:nth-child(even) .step-media {
  order: -1;
}

.step-index {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--brass-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.step p,
.step li {
  color: var(--paper-muted);
  font-size: 15px;
}

.step ul {
  margin: 12px 0 0 18px;
}

.step img {
  width: 100%;
  border-radius: 3px;
  border: 1px solid var(--border-faint);
}

.notice {
  background: var(--ink-2);
  border-left: 3px solid var(--brass);
  padding: 24px 28px;
  margin-top: 40px;
  color: var(--paper-muted);
  font-size: 15px;
}

.notice strong {
  color: var(--paper-line);
  display: block;
  margin-bottom: 8px;
  font-family: "IBM Plex Sans", sans-serif;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 800px;
}

.faq details {
  background: var(--ink-2);
  border: 1px solid var(--border-faint);
  border-radius: 3px;
  padding: 0 24px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 600;
  color: var(--paper-line);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--brass-light);
  font-family: "IBM Plex Mono", monospace;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  color: var(--paper-muted);
  padding-bottom: 20px;
}

/* CONTACT / LEGAL */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.address {
  font-style: normal;
  color: var(--paper-muted);
  line-height: 1.8;
}

.form {
  display: grid;
  gap: 16px;
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--paper-muted);
  font-family: "IBM Plex Mono", monospace;
}

.form input,
.form textarea {
  background: var(--ink-2);
  border: 1px solid var(--border-faint);
  color: var(--paper-line);
  padding: 12px 14px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px;
  border-radius: 2px;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form button {
  justify-self: start;
  background: var(--brass);
  color: var(--ink);
  border: 0;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
}

.form button:hover {
  background: var(--brass-light);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.alert {
  padding: 14px 18px;
  border-radius: 2px;
  margin-bottom: 20px;
  font-size: 14.5px;
}

.alert--ok {
  background: rgba(107, 143, 113, 0.15);
  color: #c5dcc8;
  border: 1px solid rgba(107, 143, 113, 0.4);
}

.alert--err {
  background: rgba(196, 92, 74, 0.15);
  color: #f0c4bc;
  border: 1px solid rgba(196, 92, 74, 0.4);
}

.legal {
  max-width: 760px;
}

.legal h2 {
  font-size: 20px;
  text-transform: none;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  margin: 28px 0 10px;
}

.legal p,
.legal li {
  color: var(--paper-muted);
  margin-bottom: 10px;
}

.legal ul {
  margin-left: 20px;
  margin-bottom: 14px;
}

.muted {
  color: var(--paper-muted);
}

/* FOOTER */
footer {
  padding: 56px 0;
  border-top: 1px solid var(--border-faint);
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--paper-muted);
  text-decoration: none;
  font-size: 13.5px;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--paper-line);
}

.footer-note {
  color: var(--paper-muted);
  font-size: 13px;
  font-family: "IBM Plex Mono", monospace;
}

/* LANGUAGE POPUP */
.lang-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 14, 0.82);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

body.lang-popup-open {
  overflow: hidden;
}

.lang-card {
  background: var(--ink-2);
  border: 1px solid var(--border-faint);
  padding: 40px 36px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  border-radius: 3px;
}

.lang-card h2 {
  font-size: 28px;
  margin: 12px 0 8px;
}

.lang-card p {
  color: var(--paper-muted);
  margin-bottom: 28px;
}

.lang-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lang-choice {
  background: var(--ink);
  border: 1px solid var(--border-faint);
  padding: 22px 12px;
  cursor: pointer;
  color: var(--paper-line);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 2px;
  text-decoration: none;
  display: block;
}

.lang-choice:hover,
.lang-choice:focus {
  border-color: var(--brass-light);
  outline: none;
}

.lang-choice .flag {
  width: 42px;
  height: 28px;
  margin: 0 auto 12px;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--border-faint);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 32px 24px;
    gap: 14px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero .wrap,
  .split,
  .split--reverse,
  .step,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .step:nth-child(even) .step-media {
    order: 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .rings,
  .targets,
  .phones,
  .gallery,
  .plans {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }

  .hero,
  .section {
    padding: 56px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 32px;
  }

  .phones {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}
