:root {
  --navy: #0b1f3a;
  --navy2: #122b4d;
  --gold: #d4a62a;
  --gold2: #f1c75b;
  --white: #fff;
  --light: #f4f7fb;
  --text: #172033;
  --muted: #637083;
  --border: #dde5ee;
  --success: #16724a;
  --shadow: 0 18px 50px rgba(11, 31, 58, 0.12);
  --radius: 20px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
button,
input,
select {
  font: inherit;
}
.container {
  width: min(1180px, 92%);
  margin: auto;
}
.topbar {
  background: #071527;
  color: #dbe5ef;
  font-size: 11px;
}
.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #edf0f4;
}
.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand strong {
  display: block;
  font-family: Poppins;
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.brand span {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  color: #9a6d10;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 23px;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 12px 17px;
  border-radius: 10px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  color: var(--navy);
}
.hero {
  background: linear-gradient(135deg, #fff 0%, #f7fafc 55%, #eaf2f8 100%);
  padding: 76px 0 66px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  color: #9a6d10;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 11px;
}
h1,
h2,
h3 {
  font-family: Poppins, Arial, sans-serif;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--navy);
}
h1 {
  font-size: clamp(42px, 5.2vw, 68px);
  letter-spacing: -2px;
}
h1 span {
  color: var(--gold);
}
h2 {
  font-size: clamp(30px, 4vw, 46px);
}
h3 {
  font-size: 21px;
}
.hero-copy > p {
  max-width: 650px;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 27px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  padding: 14px 20px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.gold {
  background: var(--gold);
  color: #182130;
  box-shadow: 0 10px 25px rgba(212, 166, 42, 0.25);
}
.outline {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: #fff;
}
.navy {
  background: var(--navy);
  color: #fff;
}
.white-outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}
.full {
  width: 100%;
  margin-top: 7px;
}
.trust-points {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 21px;
  color: #4d5a6c;
  font-size: 11px;
  font-weight: 800;
}
.hero-card {
  min-height: 430px;
  background: linear-gradient(150deg, var(--navy), #071527);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  padding: 34px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.card-glow {
  position: absolute;
  width: 270px;
  height: 270px;
  background: rgba(212, 166, 42, 0.24);
  border-radius: 50%;
  filter: blur(35px);
  right: -70px;
  top: -60px;
}
.mini-card {
  position: absolute;
  top: 35px;
  left: 35px;
  right: 35px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 15px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
}
.mini-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
}
.mini-card small {
  display: block;
  color: #c8d1dd;
}
.mini-card strong {
  font-family: Poppins;
  font-size: 17px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.hero-pills span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  color: #e7edf4;
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 700;
}
.hero-metric {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 18px;
}
.hero-metric small {
  color: #bdc8d5;
}
.hero-metric strong {
  display: block;
  font-family: Poppins;
  font-size: 23px;
  margin-top: 4px;
}
.hero-actions-card {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.hero-actions-card a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 11px 8px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.quick-start {
  padding: 52px 0 65px;
  background: #fff;
}
.quick-title {
  text-align: center;
  margin-bottom: 25px;
}
.quick-title h2 {
  font-size: 31px;
}
.requirement-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.requirement-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 19px;
  text-align: left;
  cursor: pointer;
  transition: 0.22s;
  box-shadow: 0 7px 22px rgba(11, 31, 58, 0.04);
}
.requirement-card:hover,
.requirement-card.active {
  transform: translateY(-4px);
  border-color: #d7b65e;
  box-shadow: var(--shadow);
}
.requirement-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--light);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 12px;
}
.requirement-card strong,
.requirement-card small {
  display: block;
}
.requirement-card strong {
  font-size: 13px;
}
.requirement-card small {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
}
.section {
  padding: 88px 0;
}
.light {
  background: #f8fafc;
}
.funnel-section {
  background: var(--light);
}
.funnel-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 55px;
  align-items: center;
}
.funnel-copy p {
  color: var(--muted);
  max-width: 530px;
}
.funnel-steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.funnel-steps div {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 12px;
}
.funnel-steps b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
}
.funnel-steps span {
  font-weight: 700;
  font-size: 13px;
}
.lead-form {
  background: #fff;
  padding: 29px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.form-heading {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 21px;
}
.form-heading strong,
.form-heading small {
  display: block;
}
.form-heading strong {
  font-family: Poppins;
  color: var(--navy);
}
.form-heading small {
  color: var(--muted);
  font-size: 11px;
}
.step-badge {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff4d4;
  color: #8a6513;
  font-weight: 900;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
input,
select {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: 9px;
  outline: none;
  background: #fff;
  font-size: 13px;
}
input:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 166, 42, 0.12);
}
.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  font-weight: 500;
  color: var(--muted);
  font-size: 10px;
}
.consent input {
  width: 16px;
  margin: 2px 0 0;
  flex: 0 0 16px;
}
.form-status {
  margin: 12px 0 0;
  text-align: center;
  font-weight: 700;
  color: #8a6513 !important;
  font-size: 12px;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}
.section-head p {
  color: var(--muted);
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tool-card {
  padding: 27px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(11, 31, 58, 0.05);
  position: relative;
  overflow: hidden;
}
.tool-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}
.tool-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--light);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 15px;
}
.tool-label {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.6px;
  color: #9a6d10;
  margin-bottom: 6px;
}
.tool-card h3 {
  margin-bottom: 7px;
}
.tool-card > p {
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 18px;
}
.tool-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}
.tool-fields label:nth-child(3) {
  grid-column: 1/-1;
}
.tool-fields button {
  grid-column: 1/-1;
}
.result-box {
  margin-top: 13px;
  background: #f7fafc;
  border: 1px dashed #cbd6e2;
  border-radius: 12px;
  padding: 13px;
  min-height: 51px;
}
.result-box small {
  color: var(--muted);
  font-size: 11px;
}
.result-main {
  font-family: Poppins;
  color: var(--navy);
  font-size: 22px;
}
.result-sub {
  font-size: 10px;
  color: var(--muted);
  display: block;
}
.checklist {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.checklist label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 7px 9px;
  border-radius: 8px;
  background: #f8fafc;
  color: #536074;
  font-weight: 600;
  font-size: 10px;
}
.checklist input {
  width: 15px;
  margin: 0;
}
.doc-points {
  display: grid;
  gap: 7px;
  margin: 18px 0;
}
.doc-points span {
  font-size: 11px;
  color: #536074;
}
.privacy-line {
  display: block;
  text-align: center;
  color: #8994a3;
  font-size: 9px;
  margin-top: 10px;
}
.loan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.loan-card {
  padding: 25px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(11, 31, 58, 0.05);
  transition: 0.25s;
}
.loan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #d7b65e;
}
.loan-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--light);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 18px;
}
.loan-card p {
  font-size: 12px;
  color: var(--muted);
  min-height: 72px;
}
.loan-card button {
  border: 0;
  background: none;
  color: #9a6d10;
  font-weight: 900;
  font-size: 11px;
  cursor: pointer;
  padding: 0;
}
.stats {
  background: var(--navy);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 25px 0;
}
.stats-grid > div {
  text-align: center;
  padding: 5px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stats-grid > div:last-child {
  border: 0;
}
.stats strong,
.stats span {
  display: block;
}
.stats strong {
  font-family: Poppins;
  font-size: 27px;
}
.stats span {
  font-size: 10px;
  color: #bdc8d5;
}
.about {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.about p {
  color: var(--muted);
  font-size: 14px;
}
.muted {
  font-size: 11px !important;
}
.quote-card {
  min-height: 260px;
  border-radius: 25px;
  background: linear-gradient(145deg, var(--navy), #071527);
  padding: 35px;
  color: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-card > span {
  font-family: Georgia;
  font-size: 70px;
  color: var(--gold);
  height: 55px;
}
.quote-card h3 {
  color: #fff;
  font-size: 30px;
}
.quote-card p {
  color: #cbd5e1;
}
.cta {
  background: linear-gradient(135deg, var(--navy), #071527);
  color: #fff;
  padding: 55px 0;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.cta h2 {
  color: #fff;
  margin: 0;
}
.cta .eyebrow {
  color: var(--gold2);
}
.cta-actions {
  display: flex;
  gap: 10px;
}
.footer {
  background: #071527;
  color: #cbd5e1;
  padding: 42px 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 35px;
}
.footer-brand {
  font-family: Poppins;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}
.footer-brand span {
  color: var(--gold);
  font-size: 11px;
}
.footer p {
  font-size: 12px;
}
.footer strong {
  color: #fff;
  display: block;
  margin-bottom: 9px;
}
.footer a,
.footer span {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 11px;
  margin: 6px 0;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 25px;
  padding-top: 15px;
  font-size: 9px;
  color: #8e9bab;
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
}
.modal.show {
  display: block;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 20, 0.65);
  backdrop-filter: blur(4px);
}
.modal-card {
  position: relative;
  width: min(480px, 92%);
  margin: 7vh auto;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  max-height: 86vh;
  overflow: auto;
}
.modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: 0;
  background: none;
  font-size: 27px;
  color: #637083;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .requirement-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .loan-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-grid {
    gap: 35px;
  }
  .nav-links {
    gap: 13px;
  }
}
@media (max-width: 800px) {
  .topbar-inner {
    justify-content: center;
  }
  .topbar-inner span:last-child {
    display: none;
  }
  .nav {
    height: 70px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 4%;
    right: 4%;
    top: 70px;
    background: #fff;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 9px;
  }
  .hero {
    padding-top: 55px;
  }
  .hero-grid,
  .funnel-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    min-height: 370px;
  }
  .tool-grid {
    grid-template-columns: 1fr;
  }
  .loan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .stats-grid > div:nth-child(2) {
    border-right: 0;
  }
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .tool-fields {
    grid-template-columns: 1fr;
  }
  .tool-fields label:nth-child(3),
  .tool-fields button {
    grid-column: auto;
  }
}
@media (max-width: 520px) {
  .brand img {
    width: 44px;
    height: 44px;
  }
  .brand strong {
    font-size: 17px;
  }
  .brand span {
    font-size: 8px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .requirement-grid,
  .loan-grid {
    grid-template-columns: 1fr 1fr;
  }
  .requirement-card {
    padding: 14px;
  }
  .hero-actions-card {
    flex-direction: column;
  }
  .section {
    padding: 65px 0;
  }
  .lead-form,
  .tool-card {
    padding: 21px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid > div {
    border-right: 0;
  }
  .modal-card {
    margin: 3vh auto;
  }
}

input[type=number]::-webkit-outer-spin-button,input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
input[type=number]{-moz-appearance:textfield}
.calculator-lead-hint{position:fixed;left:50%;bottom:22px;transform:translateX(-50%);z-index:80;width:min(620px,92%);pointer-events:none}
.calculator-prompt{pointer-events:auto;background:#fff;border:1px solid var(--border);border-left:4px solid var(--gold);border-radius:15px;box-shadow:0 18px 55px rgba(11,31,58,.20);padding:16px 48px 16px 18px;position:relative;display:flex;align-items:center;gap:12px;flex-wrap:wrap;animation:promptIn .35s ease}
.calculator-prompt b{color:var(--navy);font-size:14px}.calculator-prompt span{font-size:11px;color:var(--muted);flex:1}.calculator-prompt button{border:0;border-radius:9px;padding:9px 12px;font-weight:800;cursor:pointer;background:var(--navy);color:#fff;font-size:11px}.calculator-prompt #calculatorPromptClose{position:absolute;right:9px;top:8px;background:transparent;color:#637083;font-size:20px;padding:0}
@keyframes promptIn{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}
/* Responsive typography/card alignment */
.mini-card{align-items:center;gap:14px}.mini-card>div{display:flex;flex-direction:column;gap:4px;min-width:0}.mini-card small,.mini-card strong{line-height:1.2}.mini-card strong{font-size:clamp(18px,2.8vw,24px);white-space:normal}.hero-card{overflow:hidden}.requirement-grid,.tool-grid,.loan-grid{align-items:stretch}.requirement-card,.tool-card,.loan-card{height:100%;min-width:0}.tool-card p,.loan-card p{line-height:1.65}.section{scroll-margin-top:80px}.footer-grid{gap:35px}@media(max-width:900px){.hero-grid{grid-template-columns:1fr;gap:35px}.hero{padding:55px 0}.tool-grid,.loan-grid{grid-template-columns:1fr 1fr}.requirement-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:650px){.container{width:min(100% - 28px,1180px)}.hero-copy>p{font-size:16px}.hero-actions{flex-direction:column;align-items:stretch}.hero-actions .btn{width:100%}.hero-card{padding:22px}.hero-pills{gap:7px;flex-wrap:wrap}.hero-pills span{font-size:11px;padding:7px 9px}.tool-grid,.loan-grid,.requirement-grid{grid-template-columns:1fr}.quick-start{padding-top:40px}.mini-card strong{font-size:19px}.footer-grid{grid-template-columns:1fr}.nav-links{gap:12px}.nav-links a{font-size:12px}}
/* FINAL V5 RESPONSIVE POLISH */
.home-rate-strip{display:flex;align-items:stretch;background:#071a31;color:#fff;overflow:hidden;border-bottom:1px solid rgba(255,255,255,.08)}.home-rate-label{background:var(--gold);color:var(--navy);font-size:11px;font-weight:900;letter-spacing:.6px;padding:10px 16px;white-space:nowrap;display:flex;align-items:center}.home-rate-track{padding:10px 18px;white-space:nowrap;overflow:hidden;font-size:11px;animation:homeTicker 28s linear infinite}@keyframes homeTicker{from{transform:translateX(0)}to{transform:translateX(-45%)}}
.hero-card{justify-content:flex-start;gap:22px;min-height:430px;padding:34px}.hero-card .mini-card{position:relative;inset:auto;flex:0 0 auto}.hero-card .hero-pills{margin:0;justify-content:flex-start}.hero-card .hero-metric{margin-top:auto}.hero-card .hero-actions-card{margin-top:0}.hero-pills span{white-space:nowrap}.hero-metric strong{line-height:1.25}.footer-grid{grid-template-columns:1.35fr 1fr 1.25fr 1.6fr;gap:34px}.footer-grid>div{min-width:0}.footer strong{font-size:13px;color:#fff}.footer a:hover{color:var(--gold2)}
@media(max-width:1000px){.hero-card{min-height:0}.hero-card .hero-metric{margin-top:4px}.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:650px){.home-rate-strip{display:block}.home-rate-label{justify-content:center}.home-rate-track{font-size:10px;padding:9px 0}.hero-card{padding:22px;border-radius:24px;gap:18px}.hero-card .mini-card{width:100%;padding:14px}.hero-card .hero-pills{justify-content:flex-start;gap:7px}.hero-card .hero-metric strong{font-size:20px}.hero-card .hero-actions-card{flex-direction:column;width:100%}.hero-card .hero-actions-card a{width:100%;padding:13px}.footer-grid{grid-template-columns:1fr}.footer-grid>div{padding-bottom:10px;border-bottom:1px solid rgba(255,255,255,.08)}.footer-grid>div:last-child{border-bottom:0}}

/* ==============================
   Launch-day website splash
   ============================== */
.launch-splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(212,166,42,.16), transparent 25%),
    linear-gradient(135deg, #071527 0%, #0b1f3a 55%, #122b4d 100%);
  color: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity .65s ease, visibility .65s ease;
}
.launch-splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.launch-content {
  position: relative;
  z-index: 3;
  width: min(560px, 90%);
  text-align: center;
  animation: launchContentIn .9s cubic-bezier(.2,.8,.2,1) both;
}
.launch-logo-wrap {
  position: relative;
  width: 142px;
  height: 142px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
}
.launch-logo-wrap img {
  position: relative;
  z-index: 2;
  width: 104px;
  height: 104px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.28));
  animation: launchLogoFloat 2.6s ease-in-out infinite;
}
.launch-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(241,199,91,.72);
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(212,166,42,.08), 0 0 50px rgba(212,166,42,.18);
  animation: launchRing 2s ease-out infinite;
}
.launch-ring::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px dashed rgba(255,255,255,.35);
  border-radius: 50%;
  animation: launchSpin 8s linear infinite;
}
.launch-kicker {
  display: inline-block;
  color: #f1c75b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 11px;
}
.launch-content h2 {
  margin: 0;
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(25px, 5vw, 42px);
  line-height: 1.15;
  letter-spacing: -.6px;
}
.launch-content h2 span {
  display: block;
  color: #f1c75b;
}
.launch-content p {
  margin: 12px 0 8px;
  color: #dbe5ef;
  font-size: 13px;
}
.launch-date {
  color: rgba(255,255,255,.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
}
.launch-progress {
  width: 150px;
  height: 2px;
  margin: 24px auto 17px;
  overflow: hidden;
  background: rgba(255,255,255,.16);
  border-radius: 10px;
}
.launch-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  background: #f1c75b;
  animation: launchProgress 2.8s linear forwards;
}
.launch-skip {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  transition: .2s ease;
}
.launch-skip:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(241,199,91,.65);
}
.launch-orbit {
  position: absolute;
  border: 1px solid rgba(241,199,91,.09);
  border-radius: 50%;
  pointer-events: none;
}
.launch-orbit-one {
  width: 62vw;
  height: 62vw;
  min-width: 420px;
  min-height: 420px;
  animation: launchOrbit 18s linear infinite;
}
.launch-orbit-two {
  width: 86vw;
  height: 86vw;
  min-width: 620px;
  min-height: 620px;
  border-color: rgba(255,255,255,.055);
  animation: launchOrbit 26s linear infinite reverse;
}
.launch-particles i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f1c75b;
  box-shadow: 0 0 14px rgba(241,199,91,.8);
  animation: launchParticle 3s ease-in-out infinite;
}
.launch-particles i:nth-child(1) { left: 14%; top: 24%; animation-delay: .1s; }
.launch-particles i:nth-child(2) { left: 82%; top: 19%; animation-delay: .8s; }
.launch-particles i:nth-child(3) { left: 9%; top: 72%; animation-delay: 1.3s; }
.launch-particles i:nth-child(4) { left: 89%; top: 67%; animation-delay: 1.9s; }
.launch-particles i:nth-child(5) { left: 67%; top: 83%; animation-delay: 2.3s; }
@keyframes launchContentIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes launchLogoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-7px) scale(1.025); }
}
@keyframes launchRing {
  0% { transform: scale(.78); opacity: .2; }
  70%, 100% { transform: scale(1.08); opacity: 0; }
}
@keyframes launchSpin { to { transform: rotate(360deg); } }
@keyframes launchProgress { from { transform: scaleX(1); } to { transform: scaleX(0); } }
@keyframes launchOrbit { to { transform: rotate(360deg); } }
@keyframes launchParticle {
  0%, 100% { opacity: .2; transform: translateY(0) scale(.7); }
  50% { opacity: 1; transform: translateY(-14px) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .launch-splash *, .launch-splash::before { animation: none !important; }
  .launch-progress span { transform: scaleX(0); }
}
