/* ==========================================================================
   WESTYARD NEXUS — Design Tokens
   ========================================================================== */
:root{
  --navy:        #101F45;
  --navy-2:      #16295C;
  --navy-soft:   #2C3B6E;
  --gold:        #D4A537;
  --gold-light:  #EAC766;
  --orange:      #E8722C;
  --cream:       #F7F5EF;
  --white:       #FFFFFF;
  --ink:         #1B1E2B;
  --ink-soft:    #5B6072;
  --border:      #E7E3D8;

  --font-display: 'Fraunces', serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-mono:    'Space Grotesk', sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 50px -20px rgba(16,31,69,0.25);
  --shadow-card: 0 10px 30px -12px rgba(16,31,69,0.15);
  --ease: cubic-bezier(.22,1,.36,1);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5{
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}
p{ color: var(--ink-soft); line-height: 1.75; }
a{ text-decoration: none; }
::selection{ background: var(--gold-light); color: var(--navy); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   Preloader
   ========================================================================== */
#preloader{
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
#preloader.loaded{ opacity: 0; visibility: hidden; }
.preloader-inner{ text-align: center; }
.preloader-logo{
  width: 84px; height: 84px; object-fit: cover; border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(212,165,55,.35);
  animation: pulse 1.6s ease-in-out infinite;
}
.preloader-track{
  width: 160px; height: 3px; background: rgba(255,255,255,.15);
  border-radius: 3px; margin: 22px auto 0; overflow: hidden;
}
.preloader-bar{
  width: 40%; height: 100%; background: linear-gradient(90deg, var(--gold), var(--orange));
  animation: loadbar 1.2s ease-in-out infinite;
}
@keyframes pulse{ 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.08); } }
@keyframes loadbar{ 0%{ transform: translateX(-100%);} 100%{ transform: translateX(350%);} }

/* ==========================================================================
   Navbar
   ========================================================================== */
#mainNav{
  padding: 18px 0;
  transition: all .35s var(--ease);
  background: transparent;
}
#mainNav.scrolled{
  padding: 10px 0;
  background: rgba(16,31,69,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -10px rgba(0,0,0,.35);
}
.navbar-brand{ display: flex; align-items: center; gap: 10px; }
.navbar-brand img{
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 2px rgba(212,165,55,.5);
}
.brand-text{
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--white); letter-spacing: .02em;
}
.brand-text em{ font-style: normal; color: var(--gold-light); }
.navbar .nav-link{
  color: rgba(255,255,255,.85); font-weight: 500; font-size: .93rem;
  padding: 8px 14px !important; position: relative;
}
.navbar .nav-link:hover{ color: var(--gold-light); }
.navbar-toggler{ border: none; color: var(--white); font-size: 1.6rem; box-shadow: none !important; }

/* Buttons */
.btn-nexus-primary{
  background: var(--navy); color: var(--white); border: 1px solid var(--navy);
  border-radius: 999px; font-weight: 600; padding: 10px 22px;
  transition: all .3s var(--ease);
}
.btn-nexus-primary:hover{ background: var(--navy-2); color: var(--white); transform: translateY(-2px); }

.btn-nexus-gold{
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--navy); border: none; border-radius: 999px;
  font-weight: 700; padding: 12px 28px;
  box-shadow: 0 12px 26px -10px rgba(232,114,44,.55);
  transition: all .3s var(--ease);
}
.btn-nexus-gold:hover{ transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(232,114,44,.65); color: var(--navy); }
.btn-nexus-gold i{ margin-left:4px; }

.btn-nexus-outline{
  background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.55);
  border-radius: 999px; font-weight: 600; padding: 12px 28px;
  transition: all .3s var(--ease);
}
.btn-nexus-outline:hover{ background: rgba(255,255,255,.12); color: var(--white); border-color: var(--white); }
.section .btn-nexus-outline{ color: var(--navy); border-color: var(--navy); }
.section .btn-nexus-outline:hover{ background: var(--navy); color: var(--white); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; color: var(--white);
}
.hero-bg{ position: absolute; inset: 0; z-index: 0; }
.hero-bg img{ width: 100%; height: 100%; object-fit: cover; }
.hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,31,69,.88) 0%, rgba(16,31,69,.82) 45%, rgba(16,31,69,.94) 100%);
}
.hero-content{ position: relative; z-index: 3; padding-top: 90px; }
.eyebrow{
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .18em;
  font-size: .78rem; color: var(--gold-light); font-weight: 600;
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.eyebrow::before{ content:""; width: 28px; height: 2px; background: var(--gold-light); display:inline-block; }
.eyebrow-dark{ color: var(--orange); }
.eyebrow-dark::before{ background: var(--orange); }

.hero h1{
  color: var(--white); font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08; font-weight: 600;
}
.text-gold{ color: var(--gold-light); font-style: italic; }
.hero-sub{
  color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 620px;
  margin: 22px auto 0;
}
.hero-cta{ margin-top: 38px; }

.route-svg{
  position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 40%;
  z-index: 2; pointer-events: none;
}
.route-svg path{
  fill: none; stroke: var(--gold-light); stroke-width: 2;
  stroke-dasharray: 8 10; opacity: .55;
  stroke-dashoffset: 0;
  animation: dash-flow 6s linear infinite;
}
@keyframes dash-flow{ to{ stroke-dashoffset: -180; } }
.route-nodes circle{ fill: var(--gold-light); opacity: .85; }
.route-nodes .node-hub{
  fill: var(--orange); stroke: var(--white); stroke-width: 2;
  animation: node-glow 2.2s ease-in-out infinite;
}
@keyframes node-glow{
  0%,100%{ filter: drop-shadow(0 0 0 rgba(232,114,44,.6)); }
  50%{ filter: drop-shadow(0 0 10px rgba(232,114,44,.9)); }
}

.hero-scroll{
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.65); font-size: .75rem;
  letter-spacing: .12em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span{
  width: 1px; height: 30px; background: rgba(255,255,255,.5); display: block;
  position: relative; overflow: hidden;
}
.hero-scroll span::after{
  content:""; position: absolute; top:-100%; left:0; width: 100%; height: 50%;
  background: var(--gold-light); animation: scroll-line 1.8s ease-in-out infinite;
}
@keyframes scroll-line{ 0%{ top:-50%; } 100%{ top: 100%; } }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip{ background: var(--navy); padding: 26px 0; }
.trust-strip i{ color: var(--gold-light); font-size: 1.5rem; display:block; margin-bottom:8px; }
.trust-strip p{ color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 600; margin:0; letter-spacing: .01em; }

/* ==========================================================================
   Sections common
   ========================================================================== */
.section{ padding: 110px 0; }
.section-muted{ background: var(--white); }
.section-title{ font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 6px 0 18px; }
.section-lead{ font-size: 1.05rem; }

.link-arrow{
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700;
  color: var(--navy); font-family: var(--font-mono); text-transform: uppercase;
  font-size: .82rem; letter-spacing: .06em; margin-top: 14px;
  border-bottom: 2px solid var(--gold); padding-bottom: 4px;
  transition: gap .3s var(--ease);
}
.link-arrow:hover{ gap: 14px; color: var(--navy); }

/* About */
.about-media{ position: relative; padding: 20px 30px 30px 0; }
.img-main{ width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); object-fit: cover; height: 420px; }
.img-float{
  position: absolute; bottom: -6px; left: -10px; width: 46%; border-radius: var(--radius-md);
  border: 6px solid var(--cream); box-shadow: var(--shadow-card); object-fit: cover; height: 200px;
}
.about-badge{
  position: absolute; top: 0; right: 0; background: var(--navy); color: var(--white);
  width: 108px; height: 108px; border-radius: 50%; display:flex; flex-direction:column;
  align-items:center; justify-content:center; box-shadow: var(--shadow-soft);
  border: 4px solid var(--gold);
}
.about-badge .num{ font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold-light); }
.about-badge .label{ font-size: .68rem; text-align:center; line-height:1.2; margin-top:2px; }

.about-points{ list-style: none; padding: 0; margin: 22px 0; }
.about-points li{ margin-bottom: 10px; color: var(--ink); font-weight: 500; }
.about-points i{ color: var(--orange); margin-right: 10px; }

/* CTA strips */
.cta-strip{
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  padding: 46px 0; color: var(--white);
}
.cta-strip h3{ color: var(--white); font-size: 1.6rem; margin-bottom: 6px; }
.cta-strip p{ color: rgba(255,255,255,.75); margin: 0; }
.cta-strip-alt{ text-align:center; padding: 70px 0; }
.cta-strip-alt p{ margin-bottom: 26px; }

/* Group of companies */
.group-card{
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px 26px; height: 100%; transition: all .35s var(--ease);
  box-shadow: var(--shadow-card);
}
.group-card:hover{ transform: translateY(-8px); border-color: var(--gold); }
.group-logo{
  width: 58px; height: 58px; border-radius: var(--radius-sm); background: var(--navy);
  color: var(--gold-light); display:flex; align-items:center; justify-content:center; font-size: 1.5rem;
  margin-bottom: 18px;
}
.group-card h5{ margin-bottom: 10px; font-size: 1.1rem; }
.group-card p{ font-size: .92rem; margin-bottom: 16px; }
.group-card a{ color: var(--orange); font-weight: 700; font-size: .85rem; font-family: var(--font-mono); }
.group-card a:hover{ color: var(--navy); }

/* Feature cards */
.feature-card{
  background: var(--cream); border-radius: var(--radius-lg); padding: 36px 28px; height: 100%;
  border: 1px solid var(--border); transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.feature-card::before{
  content:""; position:absolute; top:0; left:0; width:4px; height:0; background: linear-gradient(180deg, var(--gold), var(--orange));
  transition: height .35s var(--ease);
}
.feature-card:hover::before{ height: 100%; }
.feature-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card); background: var(--white); }
.feature-icon{
  width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--gold);
  display:flex; align-items:center; justify-content:center; font-size: 1.4rem; color: var(--orange); margin-bottom: 20px;
}
.feature-card h5{ margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p{ font-size: .92rem; margin: 0; }

/* Stats */
.stats-section{
  background: var(--navy) url('https://images.unsplash.com/photo-1543083477-4f785aeafaa9?q=80&w=1600&auto=format&fit=crop') center/cover scroll;
  position: relative; padding: 90px 0;
}
.stats-section::before{ content:""; position:absolute; inset:0; background: rgba(16,31,69,.92); }
.stats-section .container{ position: relative; z-index: 1; }
.stat-block{ color: var(--white); }
.stat-num{ font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; color: var(--gold-light); }
.stat-suffix{ font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-light); font-weight: 700; }
.stat-block p{ color: rgba(255,255,255,.75); margin-top: 6px; font-size: .92rem; }

/* Leadership */
.leader-photo-wrap{
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft);
  position: relative; border: 6px solid var(--white);
}
.leader-photo-wrap img{ width: 100%; height: 460px; object-fit: cover; }
.leader-name{ font-size: 1.9rem; }
.leader-title{ color: var(--orange); font-weight: 700; font-family: var(--font-mono); font-size: .9rem; text-transform: uppercase; letter-spacing:.04em; margin: 8px 0 18px; }
.leader-meta{ display:flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.leader-meta span{ font-size: .9rem; color: var(--ink); }
.leader-meta i{ color: var(--gold); margin-right: 8px; }
.leader-social a{
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border);
  display:flex; align-items:center; justify-content:center; color: var(--navy); transition: all .3s var(--ease);
}
.leader-social a:hover{ background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Founder message */
.founder-message{
  background: var(--cream); padding: 100px 0; position: relative;
}
.quote-mark{ font-size: 3rem; color: var(--gold); margin-bottom: 8px; }
.founder-quote{
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--navy); line-height: 1.6; font-weight: 500;
}
.founder-sign{ margin-top: 26px; display:flex; flex-direction: column; }
.sign-name{ font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--navy); }
.sign-title{ font-size: .82rem; color: var(--ink-soft); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .06em; }

/* Process */
.process-card{
  background: var(--white); border-radius: var(--radius-lg); padding: 34px 26px; height: 100%;
  border: 1px solid var(--border); position: relative; transition: all .3s var(--ease);
}
.process-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card); }
.process-step{
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold);
  opacity: .9; display: block; margin-bottom: 10px;
}
.process-card h5{ font-size: 1.05rem; margin-bottom: 8px; }
.process-card p{ font-size: .9rem; margin: 0; }
.process-row .col-md-6:nth-child(odd) .process-card{ border-top: 3px solid var(--gold); }
.process-row .col-md-6:nth-child(even) .process-card{ border-top: 3px solid var(--orange); }

/* Testimonials */
.testimonial-swiper{ padding-bottom: 50px; }
.testi-card{
  background: var(--white); border-radius: var(--radius-lg); padding: 34px 30px;
  border: 1px solid var(--border); box-shadow: var(--shadow-card); height: 100%;
}
.testi-stars{ color: var(--gold); margin-bottom: 14px; font-size: .95rem; }
.testi-card p{ color: var(--ink); font-size: 1rem; font-style: italic; min-height: 110px; }
.testi-author{ display:flex; align-items:center; gap: 12px; margin-top: 20px; }
.testi-author img{ width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-author strong{ display:block; font-size: .92rem; color: var(--navy); }
.testi-author span{ font-size: .78rem; color: var(--ink-soft); }
.swiper-pagination-bullet{ background: var(--navy); opacity: .3; }
.swiper-pagination-bullet-active{ background: var(--gold); opacity: 1; }

/* Pricing */
.price-card{
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px 30px; height: 100%; text-align: center; transition: all .35s var(--ease); position: relative;
}
.price-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-card); }
.price-featured{ background: var(--navy); border-color: var(--navy); transform: scale(1.03); }
.price-featured h5, .price-featured .price-tag{ color: var(--white); }
.price-featured ul li{ color: rgba(255,255,255,.85); }
.price-featured ul li.text-muted{ color: rgba(255,255,255,.4) !important; }
.price-badge{
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--orange)); color: var(--navy);
  font-size: .72rem; font-weight: 700; padding: 6px 16px; border-radius: 999px;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .04em;
}
.price-card h5{ font-size: 1.2rem; margin-bottom: 6px; }
.price-tag{ font-size: .85rem; color: var(--ink-soft); margin-bottom: 22px; }
.price-card ul{ list-style:none; padding:0; margin: 0 0 26px; text-align:left; }
.price-card ul li{ padding: 8px 0; font-size: .92rem; border-bottom: 1px dashed var(--border); }
.price-card ul li i{ margin-right: 10px; color: var(--orange); }
.price-featured ul li{ border-bottom: 1px dashed rgba(255,255,255,.15); }

/* Accordion */
.nexus-accordion .accordion-item{
  border: none; border-bottom: 1px solid var(--border); background: transparent; border-radius: 0 !important;
}
.nexus-accordion .accordion-button{
  background: transparent; font-family: var(--font-display); font-weight: 600; color: var(--navy);
  font-size: 1.05rem; padding: 20px 0; box-shadow: none !important;
}
.nexus-accordion .accordion-button:not(.collapsed){ color: var(--orange); }
.nexus-accordion .accordion-button::after{ filter: hue-rotate(0deg); }
.nexus-accordion .accordion-body{ padding: 0 0 22px; color: var(--ink-soft); }

/* Contact */
.contact-info{ margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.contact-info div{ display: flex; align-items: center; gap: 12px; }
.contact-info i{
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info span{ color: var(--ink); font-weight: 500; font-size: .93rem; }

.nexus-form{
  background: var(--white); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.nexus-form .form-label{ font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.nexus-form .form-control, .nexus-form .form-select{
  border-radius: var(--radius-sm); border: 1.5px solid var(--border); padding: 11px 14px; font-size: .93rem;
  background: var(--cream);
}
.nexus-form .form-control:focus, .nexus-form .form-select:focus{
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,165,55,.2); background: var(--white);
}
.form-note{ font-size: .85rem; margin-top: 12px; text-align: center; color: var(--ink-soft); }

/* Footer */
.footer{ background: var(--navy); color: rgba(255,255,255,.7); padding: 90px 0 30px; }
.footer .leader-social a {
  color: var(--gold-light);
  border-color: rgba(255, 255, 255, 0.25);
}
.footer .leader-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.footer-brand{ display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand img{ width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.footer-brand span{ font-family: var(--font-display); color: var(--white); font-weight: 700; font-size: 1.05rem; }
.footer-brand em{ font-style: normal; color: var(--gold-light); }
.footer p{ color: rgba(255,255,255,.6); font-size: .9rem; }
.footer h6{ color: var(--white); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; margin-bottom: 20px; }
.footer ul{ list-style: none; padding: 0; margin: 0; }
.footer ul li{ margin-bottom: 12px; }
.footer ul a{ color: rgba(255,255,255,.65); font-size: .92rem; transition: color .25s; }
.footer ul a:hover{ color: var(--gold-light); }
.footer hr{ border-color: rgba(255,255,255,.12); margin: 50px 0 24px; }
.footer-bottom{ display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: .82rem; }
.footer-bottom p{ margin: 0; color: rgba(255,255,255,.5); }

.newsletter-form{ display: flex; margin-top: 8px; border-radius: 999px; overflow: hidden; border: 1.5px solid rgba(255,255,255,.2); }
.newsletter-form input{
  flex: 1; border: none; background: rgba(255,255,255,.06); padding: 12px 18px; color: var(--white); font-size: .9rem;
}
.newsletter-form input::placeholder{ color: rgba(255,255,255,.5); }
.newsletter-form input:focus{ outline: none; }
.newsletter-form button{
  border: none; background: linear-gradient(135deg, var(--gold), var(--orange)); color: var(--navy);
  width: 46px; display: flex; align-items: center; justify-content: center; font-size: 1rem;
}

/* Back to top */
#backToTop{
  position: fixed; bottom: 26px; right: 26px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--gold-light); border: none; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; z-index: 999;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .35s var(--ease); box-shadow: var(--shadow-card);
}
#backToTop.show{ opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover{ background: var(--gold); color: var(--navy); }

/* Custom subtle scroll animations (lowering translate distance for faster, smoother feel) */
[data-aos=fade-up] {
  transform: translate3d(0, 20px, 0) !important;
}
[data-aos=fade-down] {
  transform: translate3d(0, -20px, 0) !important;
}
[data-aos=fade-right] {
  transform: translate3d(-20px, 0, 0) !important;
}
[data-aos=fade-left] {
  transform: translate3d(20px, 0, 0) !important;
}
[data-aos^=fade][data-aos^=fade].aos-animate {
  transform: translate3d(0, 0, 0) !important;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991.98px){
  .section{ padding: 80px 0; }
  .navbar-collapse{ background: var(--navy); margin-top: 14px; border-radius: var(--radius-md); padding: 18px; }
  .price-featured{ transform: none; }
  .img-float{ display: none; }
  .about-media{ padding: 20px 0 0; }
}
@media (max-width: 575.98px){
  .hero h1{ font-size: 2.2rem; }
  .hero-sub{ font-size: 1rem; }
  .founder-message, .section{ padding: 64px 0; }
  .nexus-form{ padding: 24px; }
}
