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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #0A0A0A;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

/* =========================
   NAVIGATION
========================= */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: #d0d0d0;
  font-size: 0.95rem;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: #FFCC00;
}

.waitlist-link {
  color: #FFCC00 !important;
}

.waitlist-link:hover {
  opacity: 0.85;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(255, 204, 0, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(0, 122, 255, 0.08), transparent 32%),
    linear-gradient(135deg, #0A0A0A 0%, #151515 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 130px 24px 72px;
  position: relative;
  overflow: hidden;
}

.about-hero {
  min-height: 92vh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
  pointer-events: none;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.eyebrow {
  color: #FFCC00;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(3rem, 11vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
  font-weight: 900;
}

.hero-text {
  color: #cfcfcf;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-buttons,
.hero-actions,
.center-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.center-buttons {
  justify-content: center;
  margin-top: 34px;
}

/* =========================
   BUTTONS
========================= */

.btn,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 850;
  transition: 0.25s ease;
}

.btn-primary {
  background: #FFCC00;
  color: #0A0A0A;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(255, 204, 0, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(255, 204, 0, 0.3);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.22);
  color: #ffffff;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255,204,0,0.6);
}

/* =========================
   IMAGES
========================= */

.hero-kit-image {
  width: min(100%, 620px);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 90px rgba(0,0,0,0.55);
  transition: 0.35s ease;
}

.hero-kit-image:hover {
  transform: translateY(-6px);
}

.about-image {
  width: min(100%, 620px);
  height: auto;
  object-fit: contain;
  background: #0A0A0A;
}

.feature-image,
.about-section-image {
  width: 100%;
  max-height: 680px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  background: #0A0A0A;
}

.about-section-image {
  height: auto;
  object-fit: contain;
}

.tall-image {
  aspect-ratio: auto;
  max-height: 720px;
  object-fit: contain;
}

/* =========================
   SECTIONS
========================= */

section {
  position: relative;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.section,
.section-dark,
.section-grey {
  padding: 90px 0;
}

.section {
  background: #0A0A0A;
  color: #ffffff;
}

.section-dark {
  background: #0A0A0A;
  color: #ffffff;
}

.section-grey {
  background: #151515;
  color: #ffffff;
}

.section-title,
.split-section h2 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
  margin-bottom: 18px;
}

.section-text {
  color: #bdbdbd;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 760px;
}

.center-section {
  text-align: center;
}

.center-section .section-title,
.center-section .section-text {
  margin-left: auto;
  margin-right: auto;
}

.centered-text {
  text-align: center;
}

.section-copy p {
  color: #bdbdbd;
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 38px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
  margin-bottom: 18px;
}

.section-heading p {
  color: #bdbdbd;
  font-size: 1.08rem;
  line-height: 1.75;
}

/* =========================
   GRID / CARDS
========================= */

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 38px;
}

.card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,204,0,0.18);
}

.card h3 {
  font-size: 1.24rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.card p {
  color: #bdbdbd;
  line-height: 1.65;
}

/* =========================
   SPLIT SECTIONS
========================= */

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  align-items: center;
}

/* =========================
   BENEFITS
========================= */

.benefit-list {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
}

.benefit-item span {
  color: #FFCC00;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.benefit-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.benefit-item p {
  color: #bdbdbd;
  line-height: 1.6;
}

/* =========================
   WAITLIST / BREVO FORM
========================= */

.waitlist-section {
  background:
    radial-gradient(circle at top right, rgba(255, 204, 0, 0.14), transparent 34%),
    linear-gradient(135deg, #0A0A0A 0%, #151515 100%);
  color: #ffffff;
  overflow: hidden;
}

.waitlist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
}

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

.waitlist-copy .section-title {
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.waitlist-copy .section-text {
  max-width: 680px;
}

.form-wrap {
  margin-top: 32px;
  max-width: 600px;
  width: 100%;
}

.form-wrap input {
  width: 100%;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 1rem;
  margin-bottom: 16px;
  outline: none;
  font-family: inherit;
}

.form-wrap input::placeholder {
  color: #9e9e9e;
}

/* Brevo wrapper */
#waitlist .sib-form {
  background: transparent !important;
  padding: 0 !important;
  text-align: left !important;
  font-family: 'Outfit', sans-serif !important;
}

#waitlist .sib-form-container {
  width: 100% !important;
}

#waitlist #sib-container {
  max-width: 600px !important;
  width: 100% !important;
  background:
    radial-gradient(circle at top right, rgba(255,204,0,0.14), transparent 34%),
    rgba(255,255,255,0.045) !important;
  border: 1px solid rgba(255,204,0,0.38) !important;
  border-radius: 28px !important;
  padding: 28px !important;
  box-shadow: 0 26px 70px rgba(0,0,0,0.34) !important;
  color: #ffffff !important;
}

/* Hide Brevo’s duplicate title and description inside form */
#waitlist #sib-container form > div:nth-child(1),
#waitlist #sib-container form > div:nth-child(2) {
  display: none !important;
}

/* Brevo spacing */
#waitlist #sib-container form > div {
  padding: 0 0 18px !important;
}

/* Labels */
#waitlist .entry__label {
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  margin-bottom: 10px !important;
}

/* Input fields */
#waitlist .entry__field {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#waitlist .entry__field input,
#waitlist #EMAIL,
#waitlist #FIRSTNAME {
  width: 100% !important;
  min-height: 58px !important;
  padding: 16px 18px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  background: rgba(10,10,10,0.82) !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1rem !important;
  outline: none !important;
  box-shadow: none !important;
}

#waitlist .entry__field input:focus,
#waitlist #EMAIL:focus,
#waitlist #FIRSTNAME:focus {
  border-color: rgba(255,204,0,0.72) !important;
  box-shadow: 0 0 0 4px rgba(255,204,0,0.12) !important;
}

#waitlist #sib-container input::placeholder {
  color: rgba(255,255,255,0.42) !important;
  font-family: 'Outfit', sans-serif !important;
}

/* Hide unnecessary Opt-in heading */
#waitlist .sib-optin .entry__label {
  display: none !important;
}

/* Opt-in block */
#waitlist .sib-optin {
  padding: 18px !important;
  border-radius: 20px !important;
  background: rgba(10,10,10,0.52) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  margin-top: 4px !important;
}

#waitlist .sib-optin .entry_mcq,
#waitlist .sib-optin .form__entry,
#waitlist .sib-optin .form__label-row,
#waitlist .sib-optin .entry__choice {
  width: 100% !important;
  display: block !important;
}

/* This fixes the broken thin-column opt-in text */
#waitlist .sib-optin .entry__choice label {
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 100% !important;
  cursor: pointer !important;
}

#waitlist .sib-optin .entry__choice input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  margin: 2px 0 0 0 !important;
  padding: 0 !important;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  opacity: 1 !important;
  position: static !important;
}

#waitlist .sib-optin .entry__choice .checkbox {
  display: none !important;
}

#waitlist .sib-optin .entry__choice span:last-child {
  display: block !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  color: #d8d8d8 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.96rem !important;
  line-height: 1.55 !important;
  text-align: left !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

#waitlist .sib-optin .entry__choice p {
  margin: 0 !important;
  color: #d8d8d8 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.96rem !important;
  line-height: 1.55 !important;
  text-align: left !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

#waitlist .sib-optin .entry__specification {
  display: block !important;
  margin-top: 12px !important;
  padding-left: 38px !important;
  color: #a8a8a8 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
  text-align: left !important;
  white-space: normal !important;
  word-break: normal !important;
}

/* Brevo button */
#waitlist .sib-form-block__button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 56px !important;
  padding: 16px 28px !important;
  border-radius: 999px !important;
  background: #FFCC00 !important;
  color: #0A0A0A !important;
  border: none !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  text-align: center !important;
  cursor: pointer !important;
  box-shadow: 0 12px 36px rgba(255,204,0,0.22) !important;
  transition: 0.25s ease !important;
}

#waitlist .sib-form-block__button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 46px rgba(255,204,0,0.3) !important;
}

#waitlist .sib-form-block__button svg {
  display: none !important;
}

/* Brevo success / error messages */
#waitlist .sib-form-message-panel {
  max-width: 600px !important;
  margin-bottom: 18px !important;
  border-radius: 16px !important;
  font-family: 'Outfit', sans-serif !important;
}

#waitlist .sib-form-message-panel__inner-text {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
}

/* Prevent Brevo from causing horizontal overflow */
#waitlist *,
#waitlist *::before,
#waitlist *::after {
  box-sizing: border-box !important;
}

/* =========================
   FOOTER
========================= */

.footer,
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #0A0A0A;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 12px;
}

.footer p,
.site-footer p {
  color: #9a9a9a;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #b5b5b5;
}

.footer a:hover,
.site-footer a:hover {
  color: #FFCC00;
}

.copyright {
  color: #666666 !important;
  font-size: 0.92rem;
}

/* =========================
   KIT PAGE
========================= */

.kits-hero {
  min-height: auto;
  background:
    radial-gradient(circle at top right, rgba(255, 204, 0, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(0, 122, 255, 0.08), transparent 32%),
    linear-gradient(135deg, #0A0A0A 0%, #151515 100%);
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
}

.kits-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
  pointer-events: none;
}

.kits-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  align-items: center;
}

.kits-hero-copy {
  max-width: 800px;
}

.kits-hero h1 {
  font-size: clamp(3rem, 10vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
  font-weight: 900;
}

.kits-hero-image img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 34px 90px rgba(0,0,0,0.55);
  background: #0A0A0A;
}

.trust-strip {
  background: #101010;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.trust-grid div {
  color: #d8d8d8;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kit-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 42px;
}

.kit-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.28);
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.kit-card-featured,
.kit-card-highlight {
  border-color: rgba(255,204,0,0.38);
  background:
    radial-gradient(circle at top right, rgba(255,204,0,0.12), transparent 34%),
    rgba(255,255,255,0.055);
}

.kit-card-header h3,
.kit-card h2 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.kit-card-header p,
.kit-card p {
  color: #bdbdbd;
  line-height: 1.7;
}

.kit-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 204, 0, 0.12);
  border: 1px solid rgba(255, 204, 0, 0.32);
  color: #FFCC00;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kit-highlight-list,
.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.kit-highlight-list li,
.feature-list li {
  color: #d7d7d7;
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}

.kit-highlight-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #FFCC00;
  box-shadow: 0 0 20px rgba(255,204,0,0.35);
}

.table-wrap,
.comparison-table-wrap {
  margin-top: 36px;
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.035);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.comparison-table th {
  color: #FFCC00;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-table td {
  color: #d5d5d5;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3),
.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3) {
  text-align: center;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Desktop table + mobile card comparison */
.mobile-comparison {
  display: none;
}

.desktop-comparison {
  display: block;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 38px;
}

.product-spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  align-items: start;
}

.product-spec-grid h2,
.final-cta h2 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
  margin-bottom: 18px;
}

.product-spec-grid p,
.final-cta p {
  color: #bdbdbd;
  font-size: 1.08rem;
  line-height: 1.75;
}

.spec-card,
.spec-panel {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.spec-card-featured {
  border-color: rgba(255,204,0,0.34);
}

.spec-card h3,
.spec-panel h3 {
  font-size: 1.22rem;
  margin-bottom: 16px;
}

.spec-panel h3:not(:first-child) {
  margin-top: 28px;
}

.spec-card ul,
.spec-panel ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.spec-card li,
.spec-panel li {
  color: #bdbdbd;
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
}

.spec-card li::before,
.spec-panel li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #FFCC00;
  position: absolute;
  left: 0;
  top: 0.65em;
}

.custom-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 38px;
  text-align: left;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 38px;
}

.audience-grid article {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.audience-grid h3 {
  font-size: 1.24rem;
  margin-bottom: 12px;
}

.audience-grid p {
  color: #bdbdbd;
  line-height: 1.65;
}

.final-cta {
  background:
    radial-gradient(circle at top right, rgba(255,204,0,0.14), transparent 34%),
    linear-gradient(135deg, #151515 0%, #0A0A0A 100%);
  padding: 100px 0;
}

.final-cta-inner {
  text-align: center;
  max-width: 820px;
}

.final-cta-inner .btn-primary {
  margin-top: 28px;
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 760px) {

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr 0.9fr;
  }

  .reverse-on-mobile {
    grid-template-columns: 0.9fr 1fr;
  }

  .kit-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spec-grid,
  .custom-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-spec-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
  }

  .waitlist-grid {
    grid-template-columns: 1fr 0.95fr;
  }

}

@media (min-width: 900px) {

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 140px 6vw 90px;
  }

  .kits-hero-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

}

@media (min-width: 1100px) {

  .grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .spec-grid,
  .custom-options-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 760px) {

  .nav-container {
    min-height: 72px;
    width: min(100%, calc(100% - 28px));
  }

  .logo img {
    height: 36px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 120px;
  }

  .kits-hero {
    padding: 120px 0 72px;
  }

  .section,
  .section-dark,
  .section-grey {
    padding: 72px 0;
  }

  .benefit-item {
    grid-template-columns: 1fr;
  }

  .center-buttons {
    justify-content: flex-start;
  }

  .center-section {
    text-align: left;
  }

  .centered-text {
    text-align: left;
  }

  .about-image,
  .about-section-image,
  .tall-image {
    max-height: none;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .kit-card,
  .spec-card,
  .spec-panel {
    padding: 24px;
  }

  .section-heading {
    text-align: left;
  }

  .final-cta-inner {
    text-align: left;
  }

  .desktop-comparison {
    display: none;
  }

  .mobile-comparison {
    display: grid;
    gap: 14px;
    margin-top: 34px;
  }

  .comparison-card {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 14px 38px rgba(0,0,0,0.2);
  }

  .comparison-card h3 {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 14px;
    font-weight: 850;
  }

  .comparison-card div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .comparison-card span {
    color: #9f9f9f;
    font-weight: 700;
  }

  .comparison-card strong {
    color: #FFCC00;
    font-weight: 850;
  }

  #waitlist #sib-container {
    padding: 22px !important;
    border-radius: 24px !important;
  }

  #waitlist .waitlist-copy .section-title {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  #waitlist .sib-optin {
    padding: 16px !important;
  }

  #waitlist .sib-optin .entry__choice label {
    grid-template-columns: 22px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  #waitlist .sib-optin .entry__choice p {
    font-size: 0.9rem !important;
  }

  #waitlist .sib-optin .entry__specification {
    padding-left: 34px !important;
    font-size: 0.82rem !important;
  }

  #waitlist .sib-form-block__button {
    width: 100% !important;
  }

}

/* =========================
   LEARN HUB / ARTICLES
========================= */

.learn-hero,
.article-hero {
  background:
    radial-gradient(circle at top right, rgba(255, 204, 0, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(0, 122, 255, 0.08), transparent 32%),
    linear-gradient(135deg, #0A0A0A 0%, #151515 100%);
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
}

.learn-hero::before,
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
  pointer-events: none;
}

.learn-hero .container,
.article-hero .container {
  position: relative;
  z-index: 1;
}

.learn-hero h1,
.article-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 10vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
  font-weight: 900;
}

.learn-category-grid,
.article-card-grid,
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 38px;
}

.learn-category-card,
.article-card,
.related-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
  transition: 0.25s ease;
}

.learn-category-card:hover,
.article-card:hover,
.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,204,0,0.24);
}

.learn-category-card h3,
.article-card h3,
.related-card h3 {
  font-size: 1.24rem;
  margin-bottom: 12px;
}

.learn-category-card p,
.article-card p,
.related-card p {
  color: #bdbdbd;
  line-height: 1.65;
}

.article-tag {
  display: inline-flex;
  margin-bottom: 16px;
  color: #FFCC00;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  align-items: start;
}

.article-content {
  max-width: 820px;
}

.article-content h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 44px 0 18px;
}

.article-content h3 {
  font-size: 1.45rem;
  margin: 30px 0 12px;
}

.article-content p,
.article-content li {
  color: #c6c6c6;
  font-size: 1.08rem;
  line-height: 1.78;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 24px 22px;
}

.article-callout {
  margin: 34px 0;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255,204,0,0.12), transparent 34%),
    rgba(255,255,255,0.045);
  border: 1px solid rgba(255,204,0,0.26);
}

.article-sidebar {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 24px;
}

.article-sidebar h3 {
  margin-bottom: 14px;
}

.article-sidebar a {
  display: block;
  color: #d7d7d7;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.article-sidebar a:hover {
  color: #FFCC00;
}

.breadcrumbs {
  color: #9f9f9f;
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.breadcrumbs a:hover {
  color: #FFCC00;
}

@media (min-width: 760px) {
  .learn-category-grid,
  .article-card-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .article-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .article-sidebar {
    position: sticky;
    top: 110px;
  }
}

@media (max-width: 760px) {
  .learn-hero,
  .article-hero {
    padding: 120px 0 72px;
  }
}


/* =========================
   LEARN UPGRADE — READABLE, VISUAL ARTICLES
========================= */

.learn-hero-upgraded,
.article-hero-upgraded {
  padding: 138px 0 74px;
}

.learn-hero-grid,
.article-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}

.learn-hero-copy,
.article-hero-copy {
  max-width: 780px;
}

.learn-hero-photo-card,
.article-hero-image-card,
.article-photo-block {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
  box-shadow: 0 34px 90px rgba(0,0,0,0.5);
}

.learn-hero-photo-card img,
.article-hero-image-card img,
.article-photo-block img {
  width: 100%;
  height: auto;
  display: block;
}

.photo-caption,
.article-photo-block figcaption {
  color: #bdbdbd;
  font-size: 0.92rem;
  line-height: 1.55;
  padding: 14px 18px;
  background: rgba(10,10,10,0.72);
}

.learn-intro-section {
  padding-top: 78px;
}

.learn-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: end;
}

.article-card-grid-upgraded {
  align-items: stretch;
}

.article-card-featured-read {
  display: grid;
  gap: 22px;
  padding: 0;
  overflow: hidden;
}

.article-card-featured-read img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card-featured-read > div {
  padding: 0 26px 26px;
}

.article-card-featured-read strong {
  display: inline-flex;
  margin-top: 12px;
  color: #FFCC00;
  font-weight: 900;
}

.article-card-mini {
  min-height: 100%;
}

.article-body-section {
  padding-top: 64px;
}

.article-layout-upgraded {
  gap: 42px;
}

.article-content-upgraded {
  max-width: none;
}

.article-content-upgraded > p,
.article-content-upgraded h2,
.article-content-upgraded h3,
.article-content-upgraded ul,
.article-content-upgraded ol,
.article-content-upgraded .article-lead-card,
.article-content-upgraded .article-callout,
.article-content-upgraded .definition-grid,
.article-content-upgraded .use-case-grid,
.article-content-upgraded .process-steps,
.article-content-upgraded .article-next-card {
  max-width: 840px;
}

.article-lead-card {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,204,0,0.13), rgba(255,255,255,0.045));
  border: 1px solid rgba(255,204,0,0.25);
  box-shadow: 0 24px 70px rgba(0,0,0,0.26);
  margin-bottom: 34px;
}

.article-lead-card p {
  color: #f2f2f2;
  font-size: clamp(1.14rem, 2vw, 1.35rem);
  line-height: 1.72;
}

.article-content-upgraded h2 {
  padding-top: 12px;
}

.article-content-upgraded p,
.article-content-upgraded li {
  color: #d4d4d4;
  font-size: clamp(1.05rem, 1.4vw, 1.16rem);
  line-height: 1.86;
}

.article-example-card h3,
.article-next-card h3 {
  margin-top: 0;
}

.definition-grid,
.process-steps,
.use-case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 24px 0 34px;
}

.definition-grid div,
.process-steps div,
.use-case-grid span {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 20px;
}

.definition-grid strong,
.process-steps h3 {
  display: block;
  color: #ffffff;
  margin-bottom: 8px;
}

.definition-grid span,
.process-steps p {
  display: block;
  color: #bdbdbd;
  line-height: 1.62;
}

.process-steps span {
  display: inline-flex;
  color: #FFCC00;
  font-weight: 900;
  margin-bottom: 12px;
}

.use-case-grid span {
  color: #dcdcdc;
  font-weight: 750;
}

.article-photo-block {
  margin: 38px 0 48px;
  max-width: 940px;
}

.wide-photo {
  max-width: 100%;
}

.article-next-card {
  margin-top: 44px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,204,0,0.24);
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-meta-row span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: #d8d8d8;
  font-size: 0.86rem;
  font-weight: 750;
}

.article-sidebar-upgraded {
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.sidebar-cta {
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,204,0,0.1);
  border: 1px solid rgba(255,204,0,0.22);
}

.sidebar-cta strong {
  color: #ffffff;
}

.sidebar-cta p {
  color: #bdbdbd;
  margin: 8px 0 10px;
  line-height: 1.5;
}

.sidebar-cta a {
  color: #FFCC00 !important;
  border-top: none !important;
  padding: 0 !important;
  font-weight: 900;
}

@media (min-width: 760px) {
  .learn-intro-grid {
    grid-template-columns: 0.9fr 1fr;
  }

  .article-card-featured-read {
    grid-column: span 2;
    grid-template-columns: 0.95fr 1.05fr;
  }

  .article-card-featured-read img {
    height: 100%;
    aspect-ratio: auto;
  }

  .article-card-featured-read > div {
    padding: 30px;
    align-self: center;
  }

  .definition-grid,
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .learn-hero-grid,
  .article-hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .article-layout-upgraded {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

@media (max-width: 760px) {
  .learn-hero-upgraded,
  .article-hero-upgraded {
    padding: 116px 0 64px;
  }

  .article-lead-card,
  .article-callout,
  .article-next-card {
    padding: 22px;
    border-radius: 24px;
  }

  .article-content-upgraded h2 {
    margin-top: 38px;
  }
}


/* =========================
   FINAL LEARN PAGE LAYOUT FIX
   Keeps Learn pages aligned with the rest of the Rising Edge site
========================= */

.learn-page .learn-hero,
.article-page .article-hero {
  padding-top: 172px !important;
  padding-bottom: 92px !important;
  min-height: auto !important;
  display: block !important;
}

.learn-page .learn-hero-grid,
.article-page .article-hero-grid {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
}

.learn-page .learn-hero-copy,
.article-page .article-hero-copy {
  max-width: 760px;
}

.learn-page .learn-hero h1,
.article-page .article-hero h1 {
  color: #ffffff !important;
  opacity: 1 !important;
  font-size: clamp(3rem, 8vw, 5.8rem) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.055em !important;
  margin: 0 0 26px !important;
  font-weight: 900 !important;
}

.learn-page .learn-hero .hero-text,
.article-page .article-hero .hero-text {
  color: #d5d5d5 !important;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem) !important;
  line-height: 1.72 !important;
  max-width: 680px;
  margin-bottom: 34px;
}

.learn-page .learn-hero .eyebrow,
.article-page .article-hero .eyebrow {
  margin-bottom: 18px !important;
}

.learn-page .learn-hero-photo-card,
.article-page .article-hero-image-card {
  align-self: stretch;
  min-height: 100%;
}

.learn-page .learn-hero-photo-card img,
.article-page .article-hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.article-page .breadcrumbs {
  margin-bottom: 20px !important;
  color: #a7a7a7 !important;
  font-size: 0.95rem !important;
}

.article-page .article-body-section {
  padding-top: 86px !important;
}

.article-page .article-content-upgraded > p,
.article-page .article-content-upgraded h2,
.article-page .article-content-upgraded h3,
.article-page .article-content-upgraded ul,
.article-page .article-content-upgraded ol,
.article-page .article-content-upgraded .article-lead-card,
.article-page .article-content-upgraded .article-callout,
.article-page .article-content-upgraded .definition-grid,
.article-page .article-content-upgraded .use-case-grid,
.article-page .article-content-upgraded .process-steps,
.article-page .article-content-upgraded .article-next-card {
  max-width: 820px;
}

.article-page .article-content-upgraded p,
.article-page .article-content-upgraded li {
  font-size: 1.12rem !important;
  line-height: 1.85 !important;
  color: #d7d7d7 !important;
}

.article-page .article-content-upgraded h2 {
  color: #ffffff !important;
  margin-top: 58px !important;
  margin-bottom: 18px !important;
}

.article-page .article-content-upgraded h3 {
  color: #ffffff !important;
}

@media (min-width: 900px) {
  .learn-page .learn-hero-grid,
  .article-page .article-hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (max-width: 900px) {
  .learn-page .learn-hero,
  .article-page .article-hero {
    padding-top: 136px !important;
    padding-bottom: 70px !important;
  }

  .learn-page .learn-hero-grid,
  .article-page .article-hero-grid {
    width: min(1120px, calc(100% - 32px));
  }

  .learn-page .learn-hero h1,
  .article-page .article-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.5rem) !important;
  }

  .learn-page .learn-hero-photo-card img,
  .article-page .article-hero-image-card img {
    min-height: 260px;
  }
}

/* =========================================================
   LEARN REDESIGN V2 — POLISHED HUB + ARTICLE EXPERIENCE
   Purpose: make Learn feel like a premium Rising Edge page,
   not a plain blog layout.
========================================================= */

.learning-hub-v2,
.article-v2-page {
  background: #0A0A0A;
}

.learn-v2-hero,
.article-v2-hero {
  background:
    radial-gradient(circle at top right, rgba(255, 204, 0, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(0, 122, 255, 0.08), transparent 32%),
    linear-gradient(135deg, #0A0A0A 0%, #151515 100%);
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
}

.learn-v2-hero::before,
.article-v2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
  pointer-events: none;
}

.learn-v2-hero-grid,
.article-v2-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  align-items: center;
}

.learn-v2-copy,
.article-v2-copy {
  max-width: 820px;
}

.learn-v2-copy h1,
.article-v2-copy h1 {
  font-size: clamp(3rem, 9vw, 6.3rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
  font-weight: 900;
  color: #ffffff;
}

.learn-v2-hero-panel,
.article-v2-hero-image {
  position: relative;
}

.learn-v2-hero-panel img,
.article-v2-hero-image img {
  width: 100%;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55);
  background: #0A0A0A;
}

.learn-v2-floating-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: min(330px, calc(100% - 44px));
  padding: 18px;
  border-radius: 22px;
  background: rgba(10,10,10,0.82);
  border: 1px solid rgba(255,204,0,0.34);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.34);
}

.learn-v2-floating-card span,
.article-v2-intro-card span,
.article-v2-example-card span {
  color: #FFCC00;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.learn-v2-floating-card strong {
  display: block;
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.learn-v2-floating-card p {
  color: #bdbdbd;
  font-size: 0.96rem;
  line-height: 1.5;
}

.learn-v2-featured,
.learn-v2-pathways,
.learn-v2-proof-section,
.article-v2-body-section,
.article-v2-related-section {
  padding: 92px 0;
}

.learn-v2-featured,
.article-v2-body-section {
  background: #0A0A0A;
}

.learn-v2-pathways,
.article-v2-related-section {
  background: #151515;
}

.learn-v2-proof-section {
  background: #0A0A0A;
}

.learn-v2-section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 42px;
}

.learn-v2-section-heading.centered {
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.learn-v2-section-heading h2 {
  color: #ffffff;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.learn-v2-section-heading p {
  color: #bdbdbd;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 640px;
}

.learn-v2-section-heading.centered p {
  margin: 0 auto;
}

.learn-v2-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.learn-v2-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,0.28);
  transition: 0.25s ease;
}

a.learn-v2-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,204,0,0.36);
}

.learn-v2-card-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.learn-v2-card-body {
  padding: 26px;
}

.article-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,204,0,0.12);
  border: 1px solid rgba(255,204,0,0.32);
  color: #FFCC00;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.muted-tag {
  color: #bdbdbd;
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}

.learn-v2-card h3 {
  color: #ffffff;
  font-size: clamp(1.45rem, 3.8vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.learn-v2-card p {
  color: #bdbdbd;
  line-height: 1.65;
  margin-bottom: 18px;
}

.learn-v2-card strong {
  color: #FFCC00;
  font-weight: 900;
}

.learn-v2-pathway-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.learn-v2-pathway-card {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.learn-v2-pathway-card span {
  color: #FFCC00;
  font-size: 1rem;
  font-weight: 900;
  display: inline-block;
  margin-bottom: 34px;
}

.learn-v2-pathway-card h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.learn-v2-pathway-card p {
  color: #bdbdbd;
  line-height: 1.65;
}

.learn-v2-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
}

.learn-v2-proof-image img {
  width: 100%;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 34px 90px rgba(0,0,0,0.48);
}

.learn-v2-proof-grid h2 {
  color: #ffffff;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
  margin-bottom: 20px;
}

.learn-v2-proof-grid p {
  color: #bdbdbd;
  font-size: 1.08rem;
  line-height: 1.75;
}

.learn-v2-mini-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.learn-v2-mini-list div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
}

.learn-v2-mini-list strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
}

.learn-v2-mini-list span {
  color: #bdbdbd;
}

/* Article V2 */
.article-v2-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.article-v2-meta span {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  color: #dcdcdc;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumbs {
  color: #9f9f9f;
  font-weight: 800;
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: #FFCC00;
}

.article-v2-intro-section {
  background: #151515;
  padding: 42px 0;
}

.article-v2-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.article-v2-intro-card,
.article-v2-example-card {
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  box-shadow: 0 22px 60px rgba(0,0,0,0.28);
}

.article-v2-intro-card {
  border-color: rgba(255,204,0,0.28);
  background:
    radial-gradient(circle at top right, rgba(255,204,0,0.12), transparent 34%),
    rgba(255,255,255,0.045);
}

.article-v2-intro-card h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.article-v2-intro-card p,
.article-v2-example-card p {
  color: #d8d8d8;
  font-size: 1.1rem;
  line-height: 1.7;
}

.article-v2-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.article-v2-sidebar {
  display: none;
}

.article-v2-content {
  max-width: 860px;
}

.article-v2-content section {
  margin-bottom: 44px;
}

.article-v2-content h2 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

.article-v2-content h3 {
  color: #ffffff;
}

.article-v2-content p {
  color: #d0d0d0;
  font-size: 1.12rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.article-v2-definition-grid,
.article-v2-steps,
.article-v2-use-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

.article-v2-definition-grid div,
.article-v2-steps div,
.article-v2-use-grid span,
.article-v2-next-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 20px;
}

.article-v2-definition-grid strong,
.article-v2-steps span {
  color: #FFCC00;
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.article-v2-definition-grid span,
.article-v2-use-grid span,
.article-v2-steps p {
  color: #bdbdbd;
  line-height: 1.6;
}

.article-v2-steps h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.article-v2-photo {
  margin: 42px 0;
}

.article-v2-photo img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 28px 70px rgba(0,0,0,0.38);
}

.article-v2-photo figcaption {
  color: #9f9f9f;
  font-size: 0.94rem;
  line-height: 1.55;
  margin-top: 12px;
}

.article-v2-next-card {
  margin-top: 46px;
  border-color: rgba(255,204,0,0.28);
  background:
    radial-gradient(circle at top right, rgba(255,204,0,0.12), transparent 34%),
    rgba(255,255,255,0.045);
}

.article-v2-next-card h3 {
  color: #ffffff;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.article-v2-related-section .small-grid {
  max-width: 900px;
}

@media (min-width: 760px) {
  .learn-v2-section-heading {
    grid-template-columns: 1fr 0.8fr;
  }

  .learn-v2-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .learn-v2-card-large {
    grid-column: span 2;
  }

  .learn-v2-pathway-grid,
  .article-v2-definition-grid,
  .article-v2-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-v2-intro-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .article-v2-use-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .learn-v2-hero-grid,
  .article-v2-hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .learn-v2-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .learn-v2-pathway-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .article-v2-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .article-v2-sidebar {
    display: block;
    position: sticky;
    top: 110px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.1);
  }

  .article-v2-sidebar h3 {
    color: #ffffff;
    margin-bottom: 14px;
  }

  .article-v2-sidebar a {
    display: block;
    color: #bdbdbd;
    padding: 9px 0;
    font-weight: 750;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .article-v2-sidebar a:hover {
    color: #FFCC00;
  }

  .article-v2-sidebar .sidebar-cta {
    margin-top: 22px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,204,0,0.1);
    border: 1px solid rgba(255,204,0,0.26);
  }

  .article-v2-sidebar .sidebar-cta strong {
    color: #ffffff;
    display: block;
    margin-bottom: 6px;
  }

  .article-v2-sidebar .sidebar-cta p {
    color: #bdbdbd;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .article-v2-sidebar .sidebar-cta a {
    color: #FFCC00;
    border: none;
    padding: 0;
  }
}

@media (max-width: 760px) {
  .learn-v2-hero,
  .article-v2-hero {
    padding: 122px 0 70px;
  }

  .learn-v2-featured,
  .learn-v2-pathways,
  .learn-v2-proof-section,
  .article-v2-body-section,
  .article-v2-related-section {
    padding: 72px 0;
  }

  .learn-v2-floating-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .learn-v2-card-body,
  .learn-v2-pathway-card,
  .article-v2-intro-card,
  .article-v2-example-card {
    padding: 22px;
  }
}

/* =========================================================
   MOBILE NAV SCROLL FIX
   Keeps the full navigation usable on small screens without cramming links.
========================================================= */

@media (max-width: 760px) {
  .navbar {
    overflow: hidden;
    padding-top: env(safe-area-inset-top);
  }

  .nav-container {
    width: 100%;
    min-height: 98px;
    padding: 10px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: center;
  }

  .logo {
    display: inline-flex;
    width: fit-content;
    padding-left: 18px;
  }

  .logo img {
    height: 34px;
  }

  .nav-links {
    width: 100%;
    max-width: 100vw;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 18px 13px;
    scroll-snap-type: x proximity;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    font-size: 0.88rem;
    line-height: 1;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links a:hover {
    background: rgba(255,204,0,0.1);
  }

  .waitlist-link {
    background: rgba(255,204,0,0.12) !important;
    border-color: rgba(255,204,0,0.28) !important;
  }

  .hero {
    padding-top: 164px;
  }

  .kits-hero {
    padding-top: 164px;
  }

  .learn-page .learn-hero,
  .article-page .article-hero {
    padding-top: 164px !important;
  }
}

/* =========================================================
   MOBILE NAV SCROLL FIX V2
   Forces the nav into a true horizontal scrolling rail on mobile.
========================================================= */

@media (max-width: 760px) {
  .navbar {
    overflow: hidden !important;
  }

  .nav-container {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 112px !important;
    padding: 10px 0 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  .logo {
    display: inline-flex !important;
    width: fit-content !important;
    max-width: calc(100vw - 36px) !important;
    padding-left: 18px !important;
  }

  .logo img {
    height: 34px !important;
    width: auto !important;
  }

  .nav-links {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 10px !important;
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-x: contain !important;
    scrollbar-width: none !important;
    padding: 0 20px 14px !important;
    margin: 0 !important;
    touch-action: pan-x !important;
  }

  .nav-links::-webkit-scrollbar {
    display: none !important;
  }

  .nav-links a {
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    font-size: 0.86rem !important;
    line-height: 1 !important;
    min-height: 40px !important;
    padding: 11px 14px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.045) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
  }

  .nav-links a:last-child {
    margin-right: 18px !important;
  }

  .waitlist-link {
    color: #FFCC00 !important;
    background: rgba(255,204,0,0.12) !important;
    border-color: rgba(255,204,0,0.28) !important;
  }

  .hero,
  .kits-hero,
  .learn-v2-hero,
  .article-v2-hero {
    padding-top: 178px !important;
  }
}


/* =========================
   FINAL MOBILE NAV SCROLL OVERRIDE
   Paste at the very bottom if manually editing.
========================= */

@media (max-width: 760px) {

  .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .nav-container {
    width: 100% !important;
    max-width: none !important;
    min-height: auto !important;
    padding: 12px 0 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 10px !important;
  }

  .logo {
    display: inline-flex !important;
    padding-left: 18px !important;
    flex: 0 0 auto !important;
  }

  .logo img {
    height: 34px !important;
    width: auto !important;
  }

  .nav-links {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-x !important;
    scrollbar-width: none !important;
    padding: 0 20px 10px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .nav-links::-webkit-scrollbar {
    display: none !important;
  }

  .nav-links a {
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    font-size: 0.86rem !important;
    line-height: 1 !important;
    min-height: 40px !important;
    padding: 11px 14px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.045) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
  }

  .nav-links a:last-child {
    margin-right: 24px !important;
  }

  .waitlist-link {
    color: #FFCC00 !important;
    background: rgba(255,204,0,0.12) !important;
    border-color: rgba(255,204,0,0.28) !important;
  }

  .hero,
  .about-hero,
  .kits-hero,
  .learn-v2-hero,
  .article-v2-hero {
    padding-top: 178px !important;
  }

}


/* =========================================================
   ARTICLE NEXT GUIDE LINK FIX
   Keeps full "Next guide" cards clickable without breaking layout.
========================================================= */

.article-v2-next-link {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.article-v2-next-link .article-v2-next-card {
  transition: 0.25s ease;
}

.article-v2-next-link:hover .article-v2-next-card {
  border-color: rgba(255, 204, 0, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.article-v2-next-link:focus-visible {
  outline: 3px solid rgba(255, 204, 0, 0.8);
  outline-offset: 6px;
  border-radius: 28px;
}


/* =========================
   CONTACT PAGE
========================= */

.contact-hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 204, 0, 0.13), transparent 30%),
    linear-gradient(135deg, #0A0A0A 0%, #151515 100%);
}

.contact-panel-card {
  width: min(100%, 520px);
  padding: clamp(28px, 5vw, 46px);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.contact-panel-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 204, 0, 0.12);
  color: #FFCC00;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-panel-card h2 {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}

.contact-panel-card p {
  color: #bdbdbd;
  line-height: 1.7;
}

.contact-card-grid {
  align-items: stretch;
}

.contact-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(255, 204, 0, 0.12);
  color: #FFCC00;
  font-weight: 900;
}

.contact-detail-box {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
}

.contact-detail-box div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-detail-box div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-detail-box strong {
  display: block;
  margin-bottom: 7px;
  color: #FFCC00;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-detail-box a,
.contact-detail-box p {
  color: #ffffff;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.contact-detail-box a:hover {
  color: #FFCC00;
}

.contact-centered-buttons {
  justify-content: center;
  margin-top: 30px;
}

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