/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #E9E2D6;
  background-color: #1A1816;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(26, 58, 107, 0.85);
  color: #FAF7F2;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   SKIP LINK
   ======================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: #FAF7F2;
  color: #1A1816;
  font-size: 14px;
  font-weight: 500;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid #1a3a6b;
  outline-offset: 2px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.12;
  color: #FBF8F3;
}

h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.032em;
}

h2 {
  font-size: clamp(2.05rem, 4.6vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.022em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  letter-spacing: -0.01em;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7FA6DC;
  margin-bottom: 1.9rem;
}

.section-tag::before {
  content: '';
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
  flex-shrink: 0;
}

h2.section-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.5;
  color: #B5AFA8;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: 880px;
}

section {
  padding: 100px 0;
}

@media (min-width: 768px) {
  section {
    padding: 140px 0;
  }
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background-color: rgba(26, 24, 22, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.4s ease;
}

.nav--hidden-initially {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.nav--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav__wordmark {
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: 0.95rem;
  font-weight: 400;
  color: #B5AFA8;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__wordmark:hover {
  color: #FAF7F2;
}

#nav-typed {
  display: inline;
  white-space: nowrap;
}

.nav__cursor {
  display: inline-block;
  width: 0.65em;
  height: 1.1em;
  background: #1a3a6b;
  animation: blink 0.8s step-end infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
}

.nav__links {
  display: none;
  list-style: none;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #B5AFA8;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: #FAF7F2;
}

.nav__links a:focus-visible {
  outline: 2px solid #1a3a6b;
  outline-offset: 4px;
}

.nav__links a.nav__link--active {
  color: #FAF7F2;
}

/* Language selector */
.nav__lang {
  position: relative;
  margin-left: 8px;
}

.nav__lang-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #B5AFA8;
  background: rgba(42, 39, 36, 0.6);
  border: 1px solid #3A3530;
  padding: 4px 10px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: color 0.2s, border-color 0.2s;
}

.nav__lang-btn:hover { color: #FAF7F2; border-color: #7FA6DC; }

.nav__lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #1A1816;
  border: 1px solid #2A2724;
  min-width: 120px;
  z-index: 1002;
}

.nav__lang-dropdown--open { display: block; }

.nav__lang-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  padding: 10px 14px;
  color: #B5AFA8;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.nav__lang-dropdown button:hover {
  background: #242220;
  color: #FAF7F2;
}

.nav__lang-dropdown button.active {
  color: #7FA6DC;
}

@media (max-width: 899px) {
  .nav__lang { display: none; }
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

@media (min-width: 900px) {
  .nav__hamburger {
    display: none;
  }
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FAF7F2;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger--open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__hamburger--open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav__hamburger:focus-visible {
  outline: 2px solid #1a3a6b;
  outline-offset: 4px;
}

/* Mobile overlay */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: rgba(26, 24, 22, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 999;
}

.nav__mobile--open {
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile a {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: #FAF7F2;
  transition: color 0.2s;
}

.nav__mobile a:hover {
  color: #7FA6DC;
}

.nav__mobile a:focus-visible {
  outline: 2px solid #1a3a6b;
  outline-offset: 4px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #1A1816;
  padding: 80px 0 48px;
  text-align: center;
  border-top: 1px solid #2A2724;
}

.footer__sig {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7FA6DC;
  margin-bottom: 16px;
}

.footer__copy {
  font-size: 0.8rem;
  color: #7A7570;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
}

.footer__links a {
  font-size: 0.8rem;
  color: #B5AFA8;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #FAF7F2;
}

.footer__links a:focus-visible {
  outline: 2px solid #1a3a6b;
  outline-offset: 4px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Smooth, premium ease-out used across reveals + loads */
@keyframes bbfFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger--visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger--visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger--visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger--visible > *:nth-child(4) { transition-delay: 0.35s; }

.reveal-stagger--visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Inner-page headers ease in on load */
.page-header > .container {
  animation: bbfFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .page-header > .container { animation: none !important; }
}

/* ========================================
   FLOATING CTA
   ======================================== */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #1a3a6b;
  color: #FAF7F2;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s ease;
}

.floating-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta:hover {
  background: #12305a;
}

.floating-cta:focus-visible {
  outline: 2px solid #FAF7F2;
  outline-offset: 4px;
}

.floating-cta__arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.floating-cta:hover .floating-cta__arrow {
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .floating-cta {
    bottom: 20px;
    right: 20px;
    padding: 12px 22px;
    font-size: 0.8rem;
  }
}

/* ========================================
   BUTTONS — SHARED
   ======================================== */
.btn {
  display: inline-block;
  padding: 17px 44px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: background-color 0.35s ease, border-color 0.35s ease, transform 0.25s ease, box-shadow 0.35s ease;
  text-decoration: none;
  text-align: center;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: #1a3a6b;
  color: #FAF7F2;
  border: 2px solid #1a3a6b;
}

.btn--primary:hover {
  background: #12305a;
  border-color: #12305a;
}

.btn--outline {
  background: transparent;
  color: #FAF7F2;
  border: 2px solid rgba(250, 247, 242, 0.4);
}

.btn--outline:hover {
  border-color: rgba(250, 247, 242, 0.7);
  background: rgba(250, 247, 242, 0.05);
}

.btn:focus-visible {
  outline: 2px solid #FAF7F2;
  outline-offset: 4px;
}

/* ========================================
   PAGE HEADER (for inner pages)
   ======================================== */
.page-header {
  padding: 160px 0 80px;
  background: #1A1816;
}

@media (min-width: 768px) {
  .page-header {
    padding: 180px 0 100px;
  }
}

.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #FAF7F2;
  margin-bottom: 16px;
}

.page-header p {
  color: #B5AFA8;
  font-size: 1.05rem;
  max-width: 560px;
}

/* Blue accent line under h2 */
h2::after {
  content: '';
  display: block;
  width: 54px;
  height: 1px;
  background: linear-gradient(to right, #1a3a6b, rgba(26, 58, 107, 0));
  margin-top: 22px;
}

h2.section-tag::after,
.footer h2::after {
  display: none;
}

/* ========================================
   FOOTER — LEGAL LINKS
   ======================================== */
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  list-style: none;
  margin-bottom: 24px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: #B5AFA8;
  transition: color 0.2s;
}

.footer__legal a:hover { color: #FAF7F2; }

.footer__legal a:focus-visible {
  outline: 2px solid #1a3a6b;
  outline-offset: 4px;
}

/* ========================================
   BUILT TO GROW — drone video band
   (shared by home + plans)
   ======================================== */
.built-to-grow {
  background: #1A1816;
  position: relative;
  overflow: hidden;
}

.built-to-grow__video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.built-to-grow__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 1.5s ease;
}

.built-to-grow__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26, 24, 22, 0.82) 0%, rgba(26, 24, 22, 0.55) 60%, rgba(26, 24, 22, 0.4) 100%);
  z-index: 1;
}

.built-to-grow__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.built-to-grow .section-tag { color: rgba(250, 247, 242, 0.45); }
.built-to-grow__content h2 { margin-bottom: 8px; color: #FAF7F2; }

.built-to-grow__sub {
  color: rgba(250, 247, 242, 0.6);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-style: italic;
  margin-bottom: 28px;
}

.built-to-grow__content p {
  color: rgba(250, 247, 242, 0.72);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.built-to-grow__content p:last-child { margin-bottom: 0; }
.built-to-grow__cta { margin-top: 32px; }

/* Clean blend into the video band from whatever sits above it */
.built-to-grow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  z-index: 1;
  background: linear-gradient(to bottom, #1A1816 0%, rgba(26, 24, 22, 0) 100%);
  pointer-events: none;
}

/* ========================================
   PLANS — 3-tier monthly pricing
   ======================================== */
.plans { background: #1A1816; }

.plans__head { max-width: 640px; margin-bottom: 8px; }
.plans__head h2 { margin-bottom: 16px; }
.plans__head p { color: #B5AFA8; font-size: 1.05rem; line-height: 1.7; }

.plans__grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

@media (min-width: 720px) {
  .plans__grid { grid-template-columns: repeat(3, 1fr); }
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #201E1C;
  border: 1px solid #2A2724;
  padding: 36px 28px;
  box-shadow: 0 12px 30px -22px rgba(0, 0, 0, 0.8);
  transition: border-color 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.4s ease;
}

.plan:hover {
  border-color: #3A3530;
  transform: translateY(-10px);
  box-shadow: 0 28px 55px -26px rgba(0, 0, 0, 0.9);
}

.plan--featured {
  border-color: #7FA6DC;
  background: #221f1d;
  box-shadow: 0 22px 55px -26px rgba(26, 58, 107, 0.6);
}

.plan--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(26, 58, 107, 0.45);
  pointer-events: none;
}

@media (min-width: 720px) {
  .plan--featured { transform: translateY(-18px) scale(1.035); z-index: 2; }
  .plan--featured:hover { transform: translateY(-26px) scale(1.035); box-shadow: 0 34px 64px -24px rgba(26, 58, 107, 0.75); }
}

.plan__badge {
  box-shadow: 0 6px 16px -6px rgba(26, 58, 107, 0.8);
}

.plan__badge {
  position: absolute;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FAF7F2;
  background: #1a3a6b;
  padding: 5px 12px;
  margin-bottom: 18px;
  position: static;
}

.plan__badge--ghost {
  color: transparent;
  background: transparent;
  user-select: none;
}

.plan__name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: #FAF7F2;
  margin-bottom: 6px;
}

.plan__tagline {
  color: #8B8580;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 22px;
  min-height: 2.7em;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.plan__amount {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5vw, 3rem);
  color: #FAF7F2;
  line-height: 1;
}

.plan__period { font-size: 0.95rem; color: #B5AFA8; }

.plan__price-note {
  font-size: 0.82rem;
  color: #7A7570;
  margin-bottom: 26px;
}

.plan__divider {
  height: 1px;
  background: #2A2724;
  margin-bottom: 22px;
}

.plan__features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.plan__features li {
  position: relative;
  padding-left: 26px;
  color: #B5AFA8;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 12px;
}

.plan__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 7px;
  border-left: 2px solid #1a3a6b;
  border-bottom: 2px solid #1a3a6b;
  transform: rotate(-45deg);
}

.plan__features li strong { color: #E8E0D4; font-weight: 500; }

.plan__features li.plan__feature--muted { color: #7A7570; }
.plan__features li.plan__feature--muted::before {
  border-color: #5A5550;
}

.plan .btn { width: 100%; }

.plans__note {
  margin-top: 32px;
  font-size: 0.88rem;
  color: #8B8580;
  line-height: 1.7;
  max-width: 760px;
}

.plans__note a {
  color: #7FA6DC;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.plans__note a:hover { border-bottom-color: #7FA6DC; }

/* ========================================
   LAUNCH OFFER — the lead "founding customer" deal
   ======================================== */
.launch-offer {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding: 40px 36px;
  background: radial-gradient(130% 150% at 0% 0%, #213a63 0%, #1b2640 52%, #181c2a 100%);
  border: 1px solid #2c4470;
  box-shadow: 0 34px 80px -34px rgba(26, 58, 107, 0.85);
}

@media (min-width: 768px) { .launch-offer { padding: 52px 48px; } }

.launch-offer__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4e2ff;
  background: rgba(26, 58, 107, 0.45);
  border: 1px solid rgba(120, 160, 220, 0.4);
  padding: 6px 14px;
  margin-bottom: 28px;
}

.launch-offer__grid { display: grid; gap: 36px; }

@media (min-width: 820px) {
  .launch-offer__grid { grid-template-columns: 5fr 7fr; gap: 56px; align-items: center; }
}

.launch-offer__pricing {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.launch-offer__line { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; }

.launch-offer__label {
  width: 70px;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8ea0c4;
}

.launch-offer__was {
  font-size: 1.25rem;
  color: #7f8aa0;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.launch-offer__now {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  color: #FAF7F2;
  line-height: 1;
}

.launch-offer__unit { font-size: 0.95rem; color: #aebbd4; }

.launch-offer__plus {
  font-style: italic;
  color: #8ea0c4;
  font-size: 0.95rem;
  margin: 10px 0 10px 70px;
}

.launch-offer__spots {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #9fb0d0;
}

.launch-offer__body h3 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: #FAF7F2;
  margin-bottom: 14px;
}

.launch-offer__body > p {
  color: #c3cee2;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.launch-offer__list {
  list-style: none;
  margin-bottom: 30px;
  display: grid;
  gap: 11px;
}

@media (min-width: 560px) { .launch-offer__list { grid-template-columns: 1fr 1fr; } }

.launch-offer__list li {
  position: relative;
  padding-left: 26px;
  color: #c3cee2;
  font-size: 0.92rem;
  line-height: 1.5;
}

.launch-offer__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 7px;
  border-left: 2px solid #7ba0e0;
  border-bottom: 2px solid #7ba0e0;
  transform: rotate(-45deg);
}

.launch-offer .btn--primary {
  background: #FAF7F2;
  color: #16223c;
  border-color: #FAF7F2;
}

.launch-offer .btn--primary:hover { background: #fff; border-color: #fff; }

/* ========================================
   LEGAL PAGES (terms / privacy / agreement)
   ======================================== */
.legal { background: #1A1816; padding: 60px 0 40px; }

@media (min-width: 768px) {
  .legal { padding: 80px 0 60px; }
}

.legal__wrap { max-width: 800px; margin: 0 auto; }

.legal__meta {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: #7A7570;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #2A2724;
}

.legal__intro {
  color: #C4BDB4;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.legal__toc {
  background: #201E1C;
  border: 1px solid #2A2724;
  padding: 24px 28px;
  margin-bottom: 48px;
}

.legal__toc h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8B8580;
  margin-bottom: 16px;
}

.legal__toc h2::after { display: none; }

.legal__toc ol {
  list-style: none;
  counter-reset: toc;
  columns: 2;
  column-gap: 32px;
}

@media (max-width: 560px) { .legal__toc ol { columns: 1; } }

.legal__toc li {
  counter-increment: toc;
  margin-bottom: 8px;
  break-inside: avoid;
}

.legal__toc a {
  font-size: 0.9rem;
  color: #B5AFA8;
  transition: color 0.2s;
}

.legal__toc a::before {
  content: counter(toc, decimal-leading-zero) ' ';
  color: #7FA6DC;
  font-weight: 500;
  margin-right: 8px;
}

.legal__toc a:hover { color: #FAF7F2; }

.legal__section { margin-bottom: 44px; scroll-margin-top: 100px; }

.legal__section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: #FAF7F2;
  margin-bottom: 18px;
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.legal__section h2::after { display: none; }

.legal__section h2 .legal__num {
  font-size: 0.95rem;
  color: #7FA6DC;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.legal__section h3 {
  font-size: 1.1rem;
  color: #E8E0D4;
  margin: 24px 0 10px;
}

.legal__section p,
.legal__section li {
  color: #B5AFA8;
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal__section ul,
.legal__section ol {
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal__section li { margin-bottom: 8px; }

.legal__section strong { color: #E8E0D4; font-weight: 500; }

.legal__section a {
  color: #7FA6DC;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.legal__section a:hover { border-bottom-color: #7FA6DC; }

.legal__callout {
  background: #201E1C;
  border-left: 3px solid #1a3a6b;
  padding: 20px 24px;
  margin: 28px 0;
}

.legal__callout p { margin-bottom: 0; color: #C4BDB4; font-size: 0.95rem; }

.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
  font-size: 0.92rem;
}

.legal__table th,
.legal__table td {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid #2A2724;
  color: #B5AFA8;
  line-height: 1.6;
  vertical-align: top;
}

.legal__table th {
  background: #201E1C;
  color: #E8E0D4;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ========================================
   WAYS — the two-option pricing
   ======================================== */
.ways { background: #1A1816; }

.ways__head { max-width: 680px; }
.ways__head h2 { margin-bottom: 22px; }

.ways__lead {
  color: #C4BDB4;
  font-size: 1.12rem;
  line-height: 1.75;
}

.ways__grid {
  display: grid;
  gap: 24px;
  margin-top: 60px;
  align-items: stretch;
}

@media (min-width: 840px) {
  .ways__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

.way {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #201E1C;
  border: 1px solid #2A2724;
  padding: 46px 42px;
  box-shadow: 0 14px 34px -26px rgba(0, 0, 0, 0.85);
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.4s ease;
}

@media (max-width: 520px) { .way { padding: 36px 26px; } }

.way:hover {
  transform: translateY(-8px);
  border-color: #3A3530;
  box-shadow: 0 34px 64px -30px rgba(0, 0, 0, 0.9);
}

.way--feature {
  border-color: rgba(26, 58, 107, 0.55);
  background: #221f1b;
  box-shadow: 0 26px 64px -34px rgba(26, 58, 107, 0.4);
}

.way--feature:hover { box-shadow: 0 38px 72px -32px rgba(26, 58, 107, 0.5); }

.way__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7FA6DC;
  margin-bottom: 16px;
}

.way__name {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.7rem, 3.6vw, 2.25rem);
  color: #FBF8F3;
  margin-bottom: 30px;
}

.way__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #2A2724;
}

.way__build { font-size: 0.98rem; color: #B5AFA8; }
.way__was { color: #7A7570; text-decoration: line-through; text-decoration-thickness: 1px; }
.way__was--amt { font-family: 'DM Serif Display', serif; font-size: 1.5rem; }
.way__now { color: #FAF7F2; font-weight: 600; }
.way__intro {
  display: inline-block;
  align-self: flex-start;
  margin-top: 10px;
  padding: 4px 11px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FAF7F2;
  background: #1a3a6b;
}
.way__then { font-style: italic; color: #7A7570; font-size: 0.9rem; margin: 4px 0; }

.way__amount {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.7rem, 6vw, 3.5rem);
  color: #FBF8F3;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.way__per {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-style: normal;
  color: #A8A096;
  letter-spacing: 0.02em;
}

.way__desc {
  color: #B5AFA8;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.way__list {
  list-style: none;
  margin-bottom: 36px;
  flex-grow: 1;
  display: grid;
  gap: 13px;
}

.way__list li {
  position: relative;
  padding-left: 28px;
  color: #C4BDB4;
  font-size: 0.95rem;
  line-height: 1.55;
}

.way__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 13px;
  height: 8px;
  border-left: 2px solid #7FA6DC;
  border-bottom: 2px solid #7FA6DC;
  transform: rotate(-45deg);
}

.way .btn { width: 100%; }

.ways__note {
  margin-top: 36px;
  max-width: 760px;
  font-size: 0.9rem;
  color: #8B8580;
  line-height: 1.8;
}

.ways__note a { color: #7FA6DC; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.ways__note a:hover { border-bottom-color: #7FA6DC; }

/* ========================================
   SECURITY — learned to break, now I protect
   ======================================== */
.security { background: #201E1C; }

.security__layout { display: grid; gap: 44px; align-items: center; }

@media (min-width: 880px) {
  .security__layout { grid-template-columns: 6fr 5fr; gap: 64px; }
}

.security__text h2 { margin-bottom: 24px; }

.security__text p {
  color: #B5AFA8;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.security__text p:last-child { margin-bottom: 0; }

.security__terminal {
  background: #0e0d0c;
  border: 1px solid #2A2724;
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: 0.84rem;
  line-height: 2;
  padding: 22px 24px;
  box-shadow: 0 26px 54px -32px rgba(0, 0, 0, 0.85);
}

.security__terminal-bar { display: flex; gap: 7px; margin-bottom: 16px; }
.security__terminal-bar span { width: 10px; height: 10px; border-radius: 50%; }
.security__terminal-bar span:nth-child(1) { background: #ff5f57; }
.security__terminal-bar span:nth-child(2) { background: #febc2e; }
.security__terminal-bar span:nth-child(3) { background: #28c840; }

.security__terminal-body { min-height: 232px; }

.security__terminal-line { color: #8B8580; white-space: nowrap; overflow: hidden; }
.security__terminal-line.is-cmd .tt { color: #d2ccc1; }
.security__terminal-line.is-done .tt { color: #5cb87a; }
.security__terminal-line .ok {
  color: #5cb87a;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
}
.security__terminal-line .ok.show { opacity: 1; transition: opacity 0.25s ease; }
.security__terminal-line .prompt { color: #7FA6DC; }

@media (max-width: 879px) {
  .security__terminal-body { min-height: 0; }
}

.security__terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 0.95em;
  background: #1a3a6b;
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
}

/* ========================================
   BILLBOARD — where your money should go
   ======================================== */
.billboard { background: #1A1816; }

.billboard__head { max-width: 640px; }
.billboard__head h2 { margin-bottom: 0; }

.billboard__stats { display: grid; gap: 26px; margin: 52px 0 40px; }

@media (min-width: 700px) {
  .billboard__stats { grid-template-columns: repeat(3, 1fr); gap: 36px; }
}

.billboard__stat {
  border-top: 1px solid #2A2724;
  padding-top: 22px;
}

.billboard__num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.2rem, 9vw, 5.2rem);
  color: #FBF8F3;
  line-height: 1;
  margin-bottom: 14px;
}

.billboard__stat:nth-child(3) .billboard__num { color: #7FA6DC; }

.billboard__label {
  color: #9B9590;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.billboard__close {
  max-width: 770px;
  color: #C4BDB4;
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  line-height: 1.8;
}

.billboard__close strong { color: #FAF7F2; font-weight: 500; }
