    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: "Montserrat", sans-serif;
      font-size: 16px;
      line-height: 1.6;
      color: #1a1a2e;
      background: #fff;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden
    }

    img {
      max-width: 100%;
      display: block
    }

    a {
      text-decoration: none;
      color: inherit
    }

    ul {
      list-style: none
    }

    button,
    input,
    select,
    textarea {
      font-family: "Montserrat", sans-serif
    }

    :root {
      --navy: #284675;
      --navy-dark: #1a2e50;
      --navy-deep: #0d1e38;
      --green: #38A04A;
      --green-dk: #2a8a3a;
      --green-lt: #eaf6ec;
      --white: #fff;
      --off: #f7faf7;
      --border: #dde8dd;
      --muted: #6b7a8d;
      --text: #1a2e1c;
      --r: 10px;
      --r-lg: 18px;
      --r-xl: 24px;
    }

    .wrap {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 32px
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180.94deg, #284675 33.82%, #001D4A 108.99%); transform: translateY(-10px);
      padding: 56px 0 0;
      min-height: 640px
    }

    .hero-dots {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, .065) 1.2px, transparent 1.2px);
      background-size: 36px 36px;
      animation: dd 55s linear infinite;
      pointer-events: none;
      z-index: 0
    }

    @keyframes dd {
      from {
        background-position: 0 0
      }

      to {
        background-position: 72px 72px
      }
    }

    .hero-globe {
      position: absolute;
      top: -120px;
      right: -60px;
      width: 620px;
      height: 620px;
      border-radius: 50%;
      background: radial-gradient(circle at 50% 50%, rgba(40, 100, 200, .22) 0%, rgba(20, 60, 140, .10) 45%, transparent 70%);
      pointer-events: none;
      z-index: 0
    }

    .hero-globe::after {
      content: '';
      position: absolute;
      inset: 40px;
      border-radius: 50%;
      border: 1px solid rgba(100, 160, 255, .08);
      box-shadow: 0 0 60px rgba(60, 120, 255, .08)
    }

    .hero-lines {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 30%, rgba(56, 160, 74, .04) 50%, transparent 70%), linear-gradient(75deg, transparent 40%, rgba(40, 100, 200, .05) 60%, transparent 80%);
      pointer-events: none;
      z-index: 0
    }

    .hero-inner {
      position: relative;
      margin-top:100px;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 52px;
      align-items: start
    }

    .hero-left {
      padding-bottom: 80px
    }

    .hero-badge {
      display: inline-block;
      border: 1.5px solid rgba(56, 160, 74, .55);
      color: #38A04A;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 30px;
      margin-bottom: 24px
    }

    .hero-h1 {
      font-size: clamp(2.4rem, 4.2vw, 3.7rem);
      font-weight: 900;
      line-height: 1.07;
      color: #fff;
      letter-spacing: -.025em;
      margin-bottom: 20px
    }

    .hero-h1 .g {
      color: #38A04A
    }

    .hero-subtitle {
      font-size: .96rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 4px
    }

    .hero-subtitle .g {
      color: #38A04A
    }

    .hero-desc {
      font-size: .93rem;
      color: rgba(255, 255, 255, .66);
      line-height: 1.75;
      max-width: 460px;
      margin-top: 14px;
      margin-bottom: 44px;
      font-weight: 400
    }

    .hero-desc strong {
      color: #fff;
      font-weight: 700
    }

    .pills {
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
      align-items: flex-start
    }

    .pill {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
      min-width: 64px;
      max-width: 78px
    }

    .pill-icon {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      border: 1.5px solid rgba(56, 160, 74, .38);
      background: rgba(56, 160, 74, .09);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .pill-icon svg {
      width: 22px;
      height: 22px;
      stroke: #38A04A;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round
    }

    .pill-label {
      font-size: 9.5px;
      font-weight: 600;
      color: rgba(255, 255, 255, .68);
      line-height: 1.35
    }

    .hero-mascot {
      position: absolute;
      bottom: 0;
      right: 32px;
      width: 310px;
      z-index: 3;
      pointer-events: none;
      animation: fm 5s ease-in-out infinite;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .35))
    }

    @keyframes fm {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-18px)
      }
    }

    .hero-form-wrap {
      padding-top: 4px
    }

    .form-card {
      background: rgba(255, 255, 255, .97);
      border-radius: var(--r-xl);
      padding: 28px 24px 22px;
      box-shadow: 0 24px 80px rgba(5, 15, 40, .38), 0 4px 16px rgba(5, 15, 40, .18)
    }

    .fc-title {
      font-size: 1.12rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 8px
    }

    .fc-bar {
      width: 36px;
      height: 3px;
      background: var(--green);
      border-radius: 2px;
      margin-bottom: 10px
    }

    .fc-sub {
      font-size: .78rem;
      color: var(--muted);
      line-height: 1.62;
      margin-bottom: 16px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
      font-weight: 400
    }

    .pf {
      position: relative;
      margin-bottom: 9px
    }

    .pf-ic {
      position: absolute;
      left: 11px;
      top: 50%;
      transform: translateY(-50%);
      width: 15px;
      height: 15px;
      stroke: var(--muted);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      pointer-events: none;
      z-index: 2
    }

    .pf input,
    .pf select {
      width: 100%;
      padding: 10px 10px 10px 32px;
      border: 1.5px solid var(--border);
      border-radius: var(--r);
      font-size: .82rem;
      font-family: "Montserrat", sans-serif;
      color: var(--text);
      background: #fff;
      transition: border-color .2s, box-shadow .2s;
      appearance: none;
      -webkit-appearance: none;
      outline: none
    }

    .pf input::placeholder {
      color: var(--muted);
      font-size: .82rem
    }

    .pf input:focus,
    .pf select:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(56, 160, 74, .14)
    }

    .pf.sel::after {
      content: '';
      position: absolute;
      right: 11px;
      top: 50%;
      transform: translateY(-50%);
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 6px solid var(--muted);
      pointer-events: none;
      z-index: 3
    }

    .pf.sel select {
      padding-right: 30px;
      cursor: pointer
    }

    .phone-row {
      display: flex;
      margin-bottom: 9px
    }

    .phone-flag {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 10px 9px 10px 11px;
      border: 1.5px solid var(--border);
      border-right: none;
      border-radius: var(--r) 0 0 var(--r);
      background: #f5f7f5;
      font-size: .8rem;
      color: #3a4a3a;
      white-space: nowrap;
      flex-shrink: 0
    }

    .phone-flag .fi {
      font-size: .95rem
    }

    .phone-row .pf {
      flex: 1;
      margin-bottom: 0
    }

    .phone-row .pf input {
      border-radius: 0 var(--r) var(--r) 0 !important;
      border-left: none !important;
      padding-left: 10px !important
    }

    .ferr {
      font-size: .7rem;
      color: #d32f2f;
      margin-top: 3px;
      display: none
    }

    .ferr.show {
      display: block
    }

    .pf input.inv,
    .pf select.inv {
      border-color: #e53935;
      box-shadow: 0 0 0 3px rgba(229, 57, 53, .12)
    }

    .btn-sub {
      width: 100%;
      padding: 13px 18px;
      background: var(--green);
      color: #fff;
      border: none;
      border-radius: 30px;
      font-size: .82rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-family: "Montserrat", sans-serif;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 12px;
      transition: background .22s, transform .18s, box-shadow .22s
    }

    .btn-sub:hover {
      background: var(--green-dk);
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(56, 160, 74, .38)
    }

    .btn-sub svg {
      width: 16px;
      height: 16px;
      stroke: #fff;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0
    }

    .btn-sub.loading {
      opacity: .72;
      pointer-events: none
    }

    .fc-priv {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .7rem;
      color: var(--muted);
      margin-top: 9px;
      justify-content: center;
      font-weight: 500
    }

    .fc-priv svg {
      width: 11px;
      height: 11px;
      stroke: var(--muted);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      flex-shrink: 0
    }

    .hero-wave {
      position: relative;
      z-index: 1;
      line-height: 0;
      margin-top: 36px
    }

    .hero-wave svg {
      display: block;
      width: 100%
    }

    /* ── WHY ── */
    .why {
      padding: 76px 0 68px;
      background: #fff;
      text-align: center
    }

    .sec-title {
      font-size: clamp(1.6rem, 2.8vw, 2rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.22;
      margin-bottom: 8px
    }

    .sec-title .g {
      color: var(--green)
    }

    .sec-sub {
      font-size: .9rem;
      color: var(--muted);
      margin-bottom: 52px;
      font-weight: 400
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px
    }

    .why-card {
      padding: 30px 18px 24px;
      border-radius: var(--r-lg);
      background: var(--off);
      border: 1.5px solid transparent;
      text-align: center;
      transition: transform .24s, border-color .24s, box-shadow .24s
    }

    .why-card:hover {
      transform: translateY(-5px);
      border-color: rgba(56, 160, 74, .28);
      box-shadow: 0 12px 40px rgba(56, 160, 74, .10)
    }

    .why-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--green-lt);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px
    }

    .why-icon svg {
      width: 30px;
      height: 30px;
      stroke: var(--green);
      fill: none;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round
    }

    .why-card h4 {
      font-size: .88rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.3;
      margin-bottom: 10px
    }

    .why-card p {
      font-size: .77rem;
      color: var(--muted);
      line-height: 1.65;
      font-weight: 400
    }

    /* ── WHO ── */
    .who {
      padding: 68px 0;
      background: var(--off)
    }

    .who-inner {
      display: grid;
      grid-template-columns: 1fr 1.1fr 1fr;
      gap: 40px;
      align-items: center
    }

    .who-head {
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--navy);
      padding-bottom: 8px;
      border-bottom: 3px solid var(--green);
      display: inline-block;
      margin-bottom: 22px
    }

    .who-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 0;
      font-size: .88rem;
      color: #3a4a3a;
      font-weight: 500;
      border-bottom: 1px solid var(--border)
    }

    .who-list li:last-child {
      border-bottom: none
    }

    .who-list li svg {
      width: 20px;
      height: 20px;
      stroke: var(--green);
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      flex-shrink: 0
    }

    .who-img-wrap {
      border-radius: var(--r-xl);
      overflow: hidden;
      box-shadow: 0 20px 64px rgba(40, 70, 117, .15)
    }

    .who-img-wrap img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: var(--r-xl)
    }

    .launch {
      background: #fff;
      border-radius: var(--r-lg);
      padding: 30px 24px;
      box-shadow: 0 4px 24px rgba(40, 70, 117, .08);
      border-top: 4px solid var(--green)
    }

    .launch-ey {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 10px
    }

    .launch-h {
      font-size: 1.7rem;
      font-weight: 900;
      color: var(--navy);
      line-height: 1.14;
      margin-bottom: 12px
    }

    .launch-p {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.68;
      margin-bottom: 22px;
      font-weight: 400
    }

    .perk {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      margin-bottom: 14px
    }

    .perk-ic {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--green-lt);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .perk-ic svg {
      width: 15px;
      height: 15px;
      stroke: var(--green);
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round
    }

    .perk-txt strong {
      display: block;
      font-size: .82rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 2px
    }

    .perk-txt span {
      font-size: .74rem;
      color: var(--muted);
      font-weight: 400
    }

    /* ── STATS ── */
    .stats {
      background: linear-gradient(180.94deg, #284675 33.82%, #001D4A 108.99%); transform: translateY(-10px);
      padding: 54px 0;
      margin-bottom:100px
    }

    .stats-hd {
      text-align: center;
      font-size: .78rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .62);
      letter-spacing: .10em;
      text-transform: uppercase;
      margin-bottom: 34px;
      display: flex;
      align-items: center;
      gap: 18px;
      justify-content: center
    }

    .stats-hd::before,
    .stats-hd::after {
      content: '';
      flex: 1;
      max-width: 130px;
      height: 1px;
      background: rgba(255, 255, 255, .13)
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      border: 1px solid rgba(255, 255, 255, .10);
      border-radius: var(--r-lg);
      overflow: hidden
    }

    .stat {
      padding: 28px 16px;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, .10);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 9px;
      transition: background .22s
    }

    .stat:last-child {
      border-right: none
    }

    .stat:hover {
      background: rgba(255, 255, 255, .04)
    }

    .stat-ic {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(56, 160, 74, .15);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .stat-ic svg {
      width: 21px;
      height: 21px;
      stroke: var(--green);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round
    }

    .stat-n {
      font-size: 1.75rem;
      font-weight: 900;
      color: #fff;
      line-height: 1
    }

    .stat-n .g {
      color: var(--green)
    }

    .stat-l {
      font-size: .7rem;
      color: rgba(255, 255, 255, .48);
      line-height: 1.42;
      font-weight: 500
    }

    /* ── FOOTER CTA ── */
    .fcta {
      background: linear-gradient(90deg, var(--navy-deep) 0%, #1e3a6e 100%);
      padding: 26px 0
    }

    .fcta-in {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap
    }

    .fcta-lft {
      display: flex;
      align-items: center;
      gap: 13px
    }

    .fcta-lft svg {
      width: 22px;
      height: 22px;
      stroke: var(--green);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      flex-shrink: 0
    }

    .fcta-txt strong {
      display: block;
      font-size: .9rem;
      font-weight: 700;
      color: #fff
    }

    .fcta-txt span {
      font-size: .76rem;
      color: rgba(255, 255, 255, .48);
      font-weight: 400
    }

    .fcta-form {
      display: flex;
      gap: 10px;
      align-items: center;
      flex: 1;
      max-width: 460px
    }

    .fcta-form input {
      flex: 1;
      padding: 11px 16px;
      border-radius: 30px;
      border: 1.5px solid rgba(255, 255, 255, .18);
      background: rgba(255, 255, 255, .08);
      color: #fff;
      font-family: "Montserrat", sans-serif;
      font-size: .84rem;
      outline: none;
      transition: border-color .2s
    }

    .fcta-form input::placeholder {
      color: rgba(255, 255, 255, .38)
    }

    .fcta-form input:focus {
      border-color: var(--green)
    }

    .btn-join {
      padding: 11px 26px;
      background: var(--green);
      color: #fff;
      border: none;
      border-radius: 30px;
      font-family: "Montserrat", sans-serif;
      font-size: .82rem;
      font-weight: 800;
      letter-spacing: .05em;
      text-transform: uppercase;
      white-space: nowrap;
      cursor: pointer;
      transition: background .22s, transform .18s
    }

    .btn-join:hover {
      background: var(--green-dk);
      transform: translateY(-1px)
    }

    /* ── MODAL ── */
    .modal-bg {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(8, 20, 53, .72);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(4px);
      padding: 20px
    }

    .modal-bg.open {
      display: flex
    }

    .modal-box {
      background: #fff;
      border-radius: var(--r-xl);
      padding: 46px 38px;
      max-width: 420px;
      width: 100%;
      text-align: center;
      position: relative;
      animation: mpop .32s cubic-bezier(.34, 1.56, .64, 1) both
    }

    @keyframes mpop {
      from {
        transform: scale(.82);
        opacity: 0
      }

      to {
        transform: scale(1);
        opacity: 1
      }
    }

    .modal-x {
      position: absolute;
      top: 14px;
      right: 16px;
      background: none;
      border: none;
      font-size: 1.4rem;
      color: var(--muted);
      cursor: pointer;
      line-height: 1;
      font-family: inherit
    }

    .modal-x:hover {
      color: var(--navy)
    }

    .modal-check {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: var(--green-lt);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px
    }

    .modal-check svg {
      width: 36px;
      height: 36px;
      stroke: var(--green);
      fill: none;
      stroke-width: 2.4;
      stroke-linecap: round
    }

    .modal-box h3 {
      font-size: 1.28rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 10px
    }

    .modal-box p {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.65;
      margin-bottom: 24px;
      font-weight: 400
    }

    .btn-mclose {
      padding: 11px 34px;
      background: var(--navy);
      color: #fff;
      border: none;
      border-radius: 30px;
      font-family: "Montserrat", sans-serif;
      font-size: .86rem;
      font-weight: 700;
      cursor: pointer;
      transition: background .2s
    }

    .btn-mclose:hover {
      background: var(--navy-dark)
    }

    /* ── REVEAL ── */
    .rv {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .62s ease, transform .62s ease
    }

    .rv.in {
      opacity: 1;
      transform: translateY(0)
    }

    .d1 {
      transition-delay: .08s
    }

    .d2 {
      transition-delay: .16s
    }

    .d3 {
      transition-delay: .24s
    }

    .d4 {
      transition-delay: .32s
    }

    .d5 {
      transition-delay: .40s
    }

    .d6 {
      transition-delay: .48s
    }

    /* ── RESPONSIVE ── */
    @media(max-width:1100px) {
      .hero-mascot {
        width: 240px;
        right: 10px
      }

      .stats-row {
        grid-template-columns: repeat(3, 1fr)
      }

      .stat:nth-child(3) {
        border-right: none
      }

      .stat:nth-child(4),
      .stat:nth-child(5) {
        border-top: 1px solid rgba(255, 255, 255, .10)
      }

      .stat:nth-child(5) {
        border-right: none
      }

      .stat:nth-child(4) {
        border-right: 1px solid rgba(255, 255, 255, .10)
      }
    }

    @media(max-width:960px) {
      .hero {
        padding: 48px 0 0;
        min-height: auto
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px
      }

      .hero-left {
        padding-bottom: 0
      }

      .hero-mascot {
        position: relative;
        bottom: auto;
        right: auto;
        width: 200px;
        margin: 20px auto -8px;
        display: block
      }

      .hero-h1 {
        font-size: 2.3rem
      }

      .who-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px
      }

      .who-img-wrap {
        display: none
      }
    }

    @media(max-width:768px) {
      .hero-h1 {
        font-size: 2rem
      }

      .why {
        padding: 56px 0 50px
      }

      .who {
        padding: 52px 0
      }

      .who-inner {
        grid-template-columns: 1fr
      }

      .who-img-wrap {
        display: block
      }

      .stats {
        padding: 40px 0
      }

      .stats-row {
        grid-template-columns: repeat(2, 1fr)
      }

      .stat:nth-child(2) {
        border-right: none
      }

      .stat:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, .10);
        border-right: 1px solid rgba(255, 255, 255, .10)
      }

      .stat:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, .10);
        border-right: none
      }

      .stat:nth-child(5) {
        grid-column: 1/-1;
        border-top: 1px solid rgba(255, 255, 255, .10);
        border-right: none
      }

      .fcta-in {
        flex-direction: column;
        align-items: flex-start
      }

      .fcta-form {
        max-width: 100%;
        width: 100%
      }

      .pills {
        gap: 14px
      }
    }

    @media(max-width:580px) {
      .wrap {
        padding: 0 16px
      }

      .hero {
        padding: 44px 0 0
      }

      .hero-h1 {
        font-size: 1.82rem
      }

      .hero-mascot {
        width: 160px
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px
      }

      .why-card {
        padding: 22px 14px 18px
      }

      .form-card {
        padding: 20px 16px 18px
      }

      .modal-box {
        padding: 34px 22px
      }

      .pill {
        min-width: 54px;
        max-width: 66px
      }

      .pill-icon {
        width: 46px;
        height: 46px
      }

      .pill-label {
        font-size: 8.5px
      }
    }

    @media(max-width:420px) {
      .why-grid {
        grid-template-columns: 1fr
      }

      .stats-row {
        grid-template-columns: 1fr
      }

      .stat {
        border-right: none !important;
        border-top: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, .10) !important
      }

      .stat:last-child {
        border-bottom: none !important
      }

      .fcta-form {
        flex-direction: column
      }

      .fcta-form input,
      .btn-join {
        width: 100%;
        text-align: center
      }

      .hero-h1 {
        font-size: 1.62rem
      }
    }

    @media(prefers-reduced-motion:reduce) {
      .hero-dots {
        animation: none
      }

      .hero-mascot {
        animation: none
      }

      .rv {
        opacity: 1;
        transform: none;
        transition: none
      }
    }