/* ============================================ */
/*  DESIGN TOKENS — White + Yellow              */
/* ============================================ */
:root {
  --white:        #FFFFFF;
  --off-white:    #FEFCF7;
  --yellow-soft:  #FFFAEB;
  --yellow-pale:  #FFF3D0;
  --yellow:       #F5B82E;
  --yellow-deep:  #C9941A;
  --yellow-dark:  #8C6510;
  --ink:          #0A0A0A;
  --charcoal:     #1F2937;
  --gray-700:     #374151;
  --gray-500:     #6B7280;
  --gray-300:     #D1D5DB;
  --gray-200:     #E5E7EB;
  --gray-100:     #F3F4F6;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Manrope', system-ui, -apple-system, sans-serif;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.04);
  --shadow-md: 0 4px 16px rgba(10, 10, 10, 0.06);
  --shadow-lg: 0 12px 40px rgba(10, 10, 10, 0.08);
  --shadow-yellow: 0 8px 32px rgba(245, 184, 46, 0.28);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.18s ease; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; }
::selection { background: var(--yellow); color: var(--ink); }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}
.section { padding: var(--space-8) 0; }
.section--tight { padding: var(--space-7) 0; }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--yellow);
  z-index: 100;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(245, 184, 46, 0.6);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 50;
  transition: box-shadow 0.2s ease;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.brand-mark {
  width: 32px; height: 32px;
  background: var(--yellow);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a { color: var(--gray-700); }
.nav-links a:hover { color: var(--ink); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--r-md);
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 48px;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--yellow-deep);
  border-color: var(--yellow-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-yellow);
}
.btn-primary svg { transition: transform 0.2s ease; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--gray-300);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.btn-lg {
  padding: 18px 32px;
  font-size: 16px;
  min-height: 56px;
}

/* Hero */
.hero {
  background: var(--white);
  padding: var(--space-7) 0 var(--space-6);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--yellow-pale) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-4);
}
.hero-overline::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.hero-headline {
  
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin: 0 0 var(--space-5) 0;
  display: block;
}
.hl-line {
  display: block;
}
.hl-xl {
  font-size: clamp(72px, 11vw, 152px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
}
.hl-md {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 500;
  font-style: normal;
  color: var(--ink);
  padding-left: clamp(40px, 7vw, 120px);
  letter-spacing: -0.025em;
}
.hl-xl-accent {
  font-size: clamp(72px, 11vw, 152px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  position: relative;
  display: inline-block;
}
.hl-xl-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 6px;
  height: clamp(10px, 1.4vw, 20px);
  background: var(--yellow);
  z-index: -1;
  opacity: 0.85;
  border-radius: 2px;
}

.hero-rule {
  width: 100%;
  height: 2px;
  background: var(--gray-200);
  margin-bottom: var(--space-5);
  position: relative;
}
.hero-rule::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 64px; height: 2px;
  background: var(--yellow);
}

.hero-sub {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-6);
  align-items: center;
  margin-bottom: var(--space-5);
}
.hero-lede {
  line-height: 1.6;
  color: var(--gray-700);
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-200);
}
.hero-trust-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .hero-sub { grid-template-columns: 1fr; gap: var(--space-4); }
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 720px) {
  .hl-md { padding-left: clamp(20px, 5vw, 60px); }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
}

/* Logo strip */
.logo-strip {
  background: var(--white);
  padding: var(--space-5) 0 var(--space-4);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.logo-strip-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--space-4);
}
.logo-strip-label::before,
.logo-strip-label::after {
  content: "";
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gray-300);
  vertical-align: middle;
  margin: 0 14px;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
  align-items: center;
  justify-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.logo-item {
  width: 100%;
  max-width: 150px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  opacity: 0.7;
  transition: all 0.25s ease;
  filter: grayscale(100%);
}
.logo-item:hover {
  opacity: 1;
  color: var(--ink);
  filter: grayscale(0%);
  transform: translateY(-2px);
}
.logo-item svg { max-width: 100%; max-height: 100%; }

@media (max-width: 900px) {
  .logo-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
}
@media (max-width: 480px) {
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-strip-label::before,
  .logo-strip-label::after { width: 16px; margin: 0 8px; }
}

/* Section headers */
.section-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
  align-items: end;
}
.section-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 14px;
}
.section-title {
  
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.022em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  padding-left:0px;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--yellow-dark);
}
.section-intro {
  line-height: 1.6;
  color: var(--gray-700);
  max-width: 640px;
}

/* ============================================ */
/*  TYPOGRAPHIC REACH SECTION                   */
/* ============================================ */
.reach-editorial {
  background: var(--off-white);
  padding: var(--space-8) 0;
  overflow: hidden;
  position: relative;
}
.reach-editorial::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gray-200);
}
.reach-inner {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: var(--space-7);
  align-items: start;
}
.reach-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-5);
}
.reach-label::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--yellow);
}
.reach-type-stack {
  position: relative;
}
.reach-word {
  display: block;
  
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  user-select: none;
}
.reach-word--xl {
  font-size: clamp(72px, 10vw, 144px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
}
.reach-word--md {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.025em;
  padding-left: clamp(32px, 5vw, 80px);
}
.reach-word--sm {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--gray-500);
  letter-spacing: -0.02em;
  padding-left: clamp(8px, 2vw, 32px);
}
.reach-word--accent {
  color: var(--yellow-dark);
}
.reach-caption {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1.5px solid var(--gray-200);
  line-height: 1.6;
  color: var(--gray-700);
  max-width: 540px;
}

/* Right column — channel manifest */
.reach-manifest {
  padding-top: 18px;
}
.manifest-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--space-3);
}
.manifest-list {
  list-style: none;
  border-top: 1px solid var(--gray-300);
}
.manifest-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.15s ease;
}
.manifest-item:hover .manifest-name { color: var(--ink); }
.manifest-name {
  
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  line-height: 1.2;
  transition: color 0.15s ease;
}
.manifest-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  white-space: nowrap;
  flex-shrink: 0;
}
.manifest-tag--live {
  color: var(--yellow-dark);
}
.reach-manifest-footer {
  margin-top: var(--space-4);
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  font-style: italic;
}
.reach-manifest-footer strong {
  font-style: normal;
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .reach-inner { grid-template-columns: 1fr; gap: var(--space-5); }
  .reach-manifest { padding-top: 0; }
}

/* Hard Numbers */
.numbers {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.numbers::before {
  content: "";
  position: absolute;
  top: 50%; left: -200px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 184, 46, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.numbers .section-title { color: var(--white); }
.numbers .section-title em { color: var(--yellow); }
.numbers .section-num { color: var(--yellow); }
.numbers .section-intro { color: white; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}
.num-cell {
  padding: var(--space-5) var(--space-3);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.num-cell:last-child { border-right: none; }
.num-value {
  
  font-size: 76px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--white);
  font-variation-settings: "opsz" 144;
}
.num-value sup {
  font-size: 24px;
  color: var(--yellow);
  vertical-align: top;
  margin-left: 2px;
}
.num-label {
  font-size: 14px;
  line-height: 1.55;
  color: white;
  max-width: 92%;
}

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  align-items: stretch;
}
.pkg {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}
.pkg:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pkg.featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: scale(1.04);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.pkg.featured:hover { transform: scale(1.04) translateY(-4px); border-color: var(--yellow); }
.pkg.featured .pkg-name { color: var(--yellow); }
.pkg.featured h3 { color: var(--white); }
.pkg.featured .pkg-desc { color: white; }
.pkg.featured .pkg-divider { background: rgba(255, 255, 255, 0.16); }
.pkg.featured .pkg-includes li { color: white; }
.pkg.featured .pkg-includes li::before { color: var(--yellow); }
.pkg-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.pkg-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 12px;
}
.pkg h3 {
  
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--ink);
}
.pkg-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray-700);
  margin-bottom: var(--space-3);
  min-height: 48px;
}
.pkg-divider {
  height: 1px;
  background: var(--gray-200);
  border: 0;
  margin-bottom: var(--space-3);
}
.pkg-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}
.pkg-includes li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray-700);
}
.pkg-includes li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--yellow-dark);
  border-bottom: 2px solid var(--yellow-dark);
  transform: rotate(-45deg);
}
.pkg-cta {
  width: 100%;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r-md);
  transition: all 0.2s ease;
  min-height: 48px;
  cursor: pointer;
}
.pkg .pkg-cta {
  background: var(--ink);
  color: var(--white);
  border: 1.5px solid var(--ink);
}
.pkg .pkg-cta:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.pkg.featured .pkg-cta {
  background: var(--yellow);
  color: var(--ink);
  border: 1.5px solid var(--yellow);
}
.pkg.featured .pkg-cta:hover { background: var(--white); border-color: var(--white); }

/* Package price */
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: var(--space-3);
}
.pkg-price-amount {
  
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.pkg.featured .pkg-price-amount { color: var(--white); }
.pkg-price-period {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pkg.featured .pkg-price-period { color: white; }

/* Final CTA */
.final-cta {
  background: var(--yellow);
  color: var(--ink);
  padding: var(--space-8) 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-inner { max-width: 880px; position: relative; z-index: 1; }
.final-cta .section-num { color: var(--ink); opacity: 0.65; }
.final-cta h2 {
  
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-3);
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.final-cta h2 em { font-style: italic; font-weight: 300; }
.final-cta p {
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: var(--space-5);
  max-width: 640px;
  font-weight: 500;
}
.final-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--space-5);
}
.final-cta .btn-primary {
  background: var(--ink);
  color: var(--yellow);
  border-color: var(--ink);
}
.final-cta .btn-primary:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  box-shadow: var(--shadow-lg);
}
.final-cta .btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.final-cta .btn-secondary:hover {
  background: var(--ink);
  color: var(--yellow);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 2px solid rgba(10, 10, 10, 0.18);
}
.contact-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  opacity: 0.7;
}
.contact-item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 4px;
  opacity: 1;
}
.contact-item a { transition: color 0.2s; }
.contact-item a:hover { color: var(--yellow-dark); }



/* Reveal animation */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .section-header { grid-template-columns: 1fr; gap: var(--space-3); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .num-cell:nth-child(2n) { border-right: none; }
  .num-cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .packages-grid { grid-template-columns: 1fr; }
  .pkg.featured { transform: none; }
  .pkg.featured:hover { transform: translateY(-4px); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-2); }
}
@media (max-width: 720px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .section { padding: var(--space-7) 0; }
  .nav-links a:not(.btn) { display: none; }
  .nav .wrap { padding-top: 14px; padding-bottom: 14px; }
  .hero { padding: var(--space-6) 0; }
  .moment-stat, .num-value { font-size: 56px; }
  .pkg { padding: var(--space-4); }
  .hero-actions, .final-cta-actions { width: 100%; }
  .btn { width: 100%; }
}
@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .num-cell { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .num-cell:last-child { border-bottom: none; }
  .num-value { font-size: 48px; }
}

/* Accessibility: focus states */
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

@media (min-width: 1300px) {
    p,div,body,span,li,button{
        font-size:24px;
    }
    .manifest-tag,.reach-manifest-footer,.reach-manifest-footer span{
        font-size:0.9rem;
    }
    .hero-overline,.reach-label,.section-num,.logo-strip-label{
        font-size:1.4rem!important;
    }
    .pkg-includes li,.num-label,.pkg-desc{
        font-size:1.2rem!important;
    }
    .pkg-price-period,.manifest-heading,.pkg-name,.pkg-cta,.btn-lg{
        font-size:1.1rem!important;
    }
    .pkg-flag{
        font-size:1.1rem;
        top:-20px;
    }
    #reach .section-intro,#packages .section-intro{
        margin-bottom:50px;
    }
    .manifest-heading{
        margin-top:75px;
    }
}