:root {
  --bg: #07111f;
  --bg-soft: rgba(255, 255, 255, 0.04);
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f7fb;
  --muted: #b9c3d6;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #59f0c2;
  --accent-2: #61a8ff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1200px;
  --nav-height: 84px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(97, 168, 255, 0.15), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(89, 240, 194, 0.12), transparent 30%),
    linear-gradient(180deg, #07111f 0%, #091829 45%, #06101c 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.blur-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  animation: floatOrb 14s ease-in-out infinite;
}

.orb-1 {
  top: 10%;
  left: -120px;
  background: #61a8ff;
}

.orb-2 {
  bottom: 8%;
  right: -120px;
  background: #59f0c2;
  animation-delay: -4s;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-30px) translateX(20px) scale(1.06); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(7, 17, 31, 0.55);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 17, 31, 0.82);
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text small {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
}

.nav-links a {
  padding: 0.75rem 1rem;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07111f;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(97, 168, 255, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(97, 168, 255, 0.28);
}

.home-button{

margin-top:40px;

padding:1rem 2.2rem;

font-size:1rem;

transition:.25s ease;

}

.home-button:hover{

transform:translateY(-3px) scale(1.05);

}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  margin: 0 auto;
  position: relative;
  transition: 0.25s ease;
}

.menu-toggle span::before {
  position: absolute;
  top: -7px;
  left: 0;
}

.menu-toggle span::after {
  position: absolute;
  top: 7px;
  left: 0;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 3rem;
}

.page-hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: #dcf8ef;
  background: rgba(89, 240, 194, 0.09);
  border: 1px solid rgba(89, 240, 194, 0.2);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(89, 240, 194, 0.12);
}

.hero h1,
.inner-title {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin-bottom: 1rem;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, #ffffff, #90e2ff 50%, #73ffd6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead,
.inner-copy {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07111f;
  box-shadow: 0 14px 30px rgba(89, 240, 194, 0.13);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(89, 240, 194, 0.16);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.usp-panel {
  margin-bottom: 1.6rem;
  max-width: 650px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.stat-card {
  display: block;
  padding: 1rem 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(97, 168, 255, 0.28);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.stat-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(89, 240, 194, 0.4);
}

.stat-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.15rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.glow-ring {
  position: absolute;
  inset: 20px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(97, 168, 255, 0.18), rgba(89, 240, 194, 0.12));
  filter: blur(18px);
  z-index: -1;
}

.video-shell {
  position: relative;
  padding: 1rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.video-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.video-dots {
  display: flex;
  gap: 0.45rem;
}

.video-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.video-badge {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #defcf3;
  background: rgba(89, 240, 194, 0.12);
  border: 1px solid rgba(89, 240, 194, 0.18);
}

.video-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10,17,30,0.95), rgba(13,28,43,0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-frame video,
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-credit {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.video-credit a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.video-credit a:hover {
  text-decoration: underline;
}

.inner-hero {
  position: relative;
  z-index: 1;
  padding: 7rem 0 2.5rem;
}

.second-video {
  margin-top: 28px;
}

.inner-hero-content {
  max-width: 900px;
}

.section {
  position: relative;
  z-index: 1;
  padding: 5.25rem 0;
}

.section-head {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 0.7rem;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 0.65rem;
}

.section-copy {
  color: var(--muted);
  max-width: 100%;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.4rem;
  backdrop-filter: blur(14px);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(97, 168, 255, 0.26);
  background: rgba(255, 255, 255, 0.07);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(89,240,194,0.18), rgba(97,168,255,0.18));
  border: 1px solid rgba(255,255,255,0.12);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: stretch;
}

.feature-panel,
.steps-panel,
.contact-panel,
.about-panel {
  border-radius: 28px;
  padding: 1.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.feature-panel h3,
.steps-panel h3,
.contact-panel h3,
.about-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.feature-panel p,
.steps-panel p,
.contact-panel p,
.about-panel p,
.step-item p {
  color: var(--muted);
}

.tech-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.tech-item-bullet {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-radius: 50%;
  margin-top: 0.45rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.1rem;
}

.step-item {
  position: relative;
  padding: 1rem 1rem 1rem 4rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.step-number {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #07111f;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.invest-banner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(89,240,194,0.16), transparent 35%),
    radial-gradient(circle at left center, rgba(97,168,255,0.12), transparent 30%),
    rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.invest-banner h2,
.invest-banner h3 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
  max-width: 14ch;
}

.invest-banner p {
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 1.3rem;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.contact-item {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.contact-item small {
  display: block;
  color: #8ea0bc;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  margin-bottom: 0.45rem;
}

.contact-item strong,
.contact-item a {
  font-size: 1rem;
  color: var(--text);
  word-break: break-word;
}

.contact-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: #d6def0;
  font-size: 0.95rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
  border-radius: 16px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(89,240,194,0.4);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.4rem;
  backdrop-filter: blur(14px);
}

.faq-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.faq-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 2rem 0 3.5rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.footer a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.float-in {
  animation: floatIn 0.9s cubic-bezier(.2,.8,.2,1) both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-panel,
  .about-grid,
  .contact-grid,
  .card-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links,
  .nav-right {
    display: none;
  }

  .nav.open .nav-links,
  .nav.open .nav-right {
    display: flex;
    width: 100%;
  }

  .nav {
    position: relative;
    flex-wrap: wrap;
  }

  .nav.open .nav-links {
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem 0 0.5rem;
  }

  .nav.open .nav-right {
    order: 4;
    padding-bottom: 1rem;
  }

  .nav.open .nav-links a,
  .nav.open .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .inner-hero {
    padding-top: 4rem;
  }

  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 1.1rem), var(--container));
  }

  .hero h1,
  .inner-title {
    font-size: 2.5rem;
  }

  .video-shell,
  .feature-panel,
  .steps-panel,
  .contact-panel,
  .about-panel,
  .invest-banner,
  .card,
  .faq-card {
    border-radius: 22px;
  }
}

/* ===============================
   VIDEO SECTION FIXES
   =============================== */

.hero-visual {
  width: 100%;
  max-width: 545px;
}

.video-heading {
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.video-shell {
  width: 100%;
}

.video-credit {
  margin: 18px 0 0;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.video-credit a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.video-credit a:hover {
  text-decoration: underline;
}

.second-video-heading {
  margin-top: 34px;
}

@media (max-width: 768px) {
  .hero-visual {
    max-width: 100%;
  }

  .video-heading {
    font-size: 1.35rem;
    margin-bottom: 14px;
  }

  .video-credit {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .second-video-heading {
    margin-top: 34px;
  }
}

/* ===============================
   EXTRA MOBILE OPTIMISATION
   Add this at the very bottom
   =============================== */

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header {
    height: auto;
    min-height: 74px;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-mark,
  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-text span {
    font-size: 1rem;
  }

  .brand-text small {
    font-size: 0.62rem;
    line-height: 1.2;
  }

  .page-hero {
    min-height: auto;
    padding-top: 3.2rem;
    padding-bottom: 3rem;
    align-items: flex-start;
  }

  .hero-grid {
    gap: 2.4rem;
  }

  .hero h1,
  .inner-title {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .lead,
  .inner-copy {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.4rem;
  }

  .eyebrow {
    font-size: 0.78rem;
    line-height: 1.35;
    padding: 0.5rem 0.75rem;
    margin-bottom: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 0.95rem 1.1rem;
  }

  .usp-panel {
    max-width: 100%;
    margin-bottom: 1.4rem;
  }

  .usp-panel .section-title {
    font-size: 1.55rem;
    line-height: 1.15;
  }

  .usp-panel .section-copy {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .stat-card,
  .card,
  .faq-card,
  .feature-panel,
  .steps-panel,
  .contact-panel,
  .about-panel,
  .invest-banner {
    padding: 1.15rem;
    border-radius: 18px;
  }

  .section {
    padding: 3.2rem 0;
  }

  .section-head {
    margin-bottom: 1.4rem;
  }

  .section-title {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
    line-height: 1.1;
  }

  .section-copy {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .video-shell {
    padding: 0.75rem;
    border-radius: 20px;
  }

  .video-frame {
    border-radius: 16px;
  }

  .video-topbar {
    margin-bottom: 0.65rem;
  }

  .video-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.55rem;
  }

  .video-dots span {
    width: 8px;
    height: 8px;
  }

  .video-heading {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .second-video-heading {
    margin-top: 1.8rem;
  }

  .video-credit {
    font-size: 0.82rem;
    margin-top: 0.75rem;
  }

  .step-item {
    padding: 1rem 1rem 1rem 3.4rem;
  }

  .step-number {
    left: 0.9rem;
    top: 1rem;
    width: 1.9rem;
    height: 1.9rem;
    font-size: 0.85rem;
  }

  .invest-banner h2,
  .invest-banner h3 {
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }
}

@media (max-width: 420px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero h1,
  .inner-title {
    font-size: 2rem;
  }

  .brand-text small {
    display: none;
  }

  .eyebrow {
    border-radius: 14px;
  }

  .video-shell {
    padding: 0.6rem;
  }

  .card h3,
  .faq-card h3 {
    font-size: 1.05rem;
  }
}
/* ===============================
   MOBILE HEADER FIX
   Stops logo/site name/menu being cut off
   =============================== */

@media (max-width: 860px) {
  .site-header {
    height: auto;
    min-height: 72px;
    padding: 10px 0;
  }

  .nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    max-width: calc(100% - 58px);
    gap: 0.65rem;
  }

  .brand-mark,
  .brand-logo {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }

  .brand-text {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .brand-text span,
  .brand-text small {
    display: block;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .brand-text span {
    font-size: 1rem;
    line-height: 1.1;
  }

  .brand-text small {
    font-size: 0.62rem;
    line-height: 1.15;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    margin-left: auto;
  }

  .nav-links,
  .nav-right {
    display: none;
  }

  .nav.open {
    flex-wrap: wrap;
  }

  .nav.open .brand {
    max-width: calc(100% - 58px);
  }

  .nav.open .nav-links,
  .nav.open .nav-right {
    display: flex;
    width: 100%;
  }

  .nav.open .nav-links {
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 1rem 0 0.4rem;
  }

  .nav.open .nav-right {
    order: 4;
    padding-bottom: 0.5rem;
  }

  .nav.open .nav-links a,
  .nav.open .nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .brand-text small {
    display: none;
  }

  .brand-text span {
    font-size: 0.98rem;
  }

  .brand-mark,
  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .menu-toggle {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .brand {
    max-width: calc(100% - 50px);
  }
}