@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
}
@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
}

*{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
  width:100%;
  overflow-x:hidden;
}

body{
  font-family:'Inter',Arial,sans-serif;
  background:#fffdfa;
  color:#071a38;
  -webkit-font-smoothing:antialiased;
}

a{
  text-decoration:none;
}

/* HERO */
.hero{
  background:linear-gradient(155deg,#34342f 0%,#2a2c2c 12%,#182133 31%,#0b182d 50%,#04142e 73%,#020d24 100%);
  color:#fff;
  text-align:center;
  padding:82px 20px 48px;
}

.hero-inner{
  max-width:560px;
  margin:auto;
}

.logo{
  width:170px;
  height:170px;
  border-radius:50%;
  object-fit:cover;
  border:5px solid #e8c14a;
  box-shadow:0 0 42px rgba(231,184,46,.25);
}

.hero h1{
  font-size:58px;
  line-height:1;
  margin:42px 0 18px;
  color:#efb936;
  font-weight:700;
  letter-spacing:-1.8px;
}

.tag{
  font-size:17px;
  font-weight:700;
  letter-spacing:3.2px;
  line-height:1.55;
}

.hero p{
  font-size:18px;
  line-height:1.55;
  color:#d7dce4;
  margin:23px auto 48px;
  max-width:470px;
}

/* BUTTONS */
.gold-btn,
.wa-btn,
.outline-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  max-width:390px;
  min-height:66px;
  margin:0 auto 15px;
  padding:0 28px;
  border-radius:36px;
  font-weight:700;
  font-size:19px;
  line-height:1;
}

.gold-btn{
  background:linear-gradient(135deg,#f6d35c 0%,#e5a719 100%);
  color:#07101f;
  box-shadow:0 12px 30px rgba(231,184,46,.24);
}

.wa-btn{
  background:linear-gradient(100deg,#06c98a 0%,#03a98b 100%);
  color:#fff;
}

.outline-btn{
  border:1px solid rgba(222,177,49,.72);
  background:transparent;
  color:#fff;
}

/* STATS */
.stats{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
  margin-top:67px;
  font-weight:600;
  font-size:17px;
}

.stats div{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:#fff;
}

.stats div:first-letter{
  color:#e9b62d;
}

/* RATES */
.rates{
  background:#fffdfa;
  padding:88px 36px 70px;
}

.title{
  text-align:center;
}

.title h2{
  font-size:39px;
  line-height:1.1;
  margin:0 0 24px;
  font-weight:700;
  letter-spacing:-.7px;
  color:#071b3a;
}

.title div{
  color:#e9b62d;
  font-size:19px;
  letter-spacing:1px;
}

.title p{
  color:#687385;
  font-size:18px;
  line-height:1.45;
  margin:26px 0 68px;
}

.rate-box{
  max-width:900px;
  margin:auto;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 14px 35px rgba(15,35,60,.12);
  border:1px solid #e5e1da;
}

.rate-box table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  table-layout:fixed;
}

.rate-box th{
  height:58px;
  background:#04142e;
  color:#fff;
  padding:0 14px;
  text-align:left;
  font-size:15px;
  font-weight:700;
  vertical-align:middle;
}

.rate-box th:nth-child(1),
.rate-box td:nth-child(1){ width:45%; }

.rate-box th:nth-child(2),
.rate-box td:nth-child(2){ width:25%; text-align:center; }

.rate-box th:nth-child(3),
.rate-box td:nth-child(3){ width:30%; text-align:center; }

.rate-box td{
  height:62px;
  padding:10px 14px;
  border-bottom:1px solid #e5e1da;
  font-size:17px;
  vertical-align:middle;
  line-height:1.3;
}

.rate-box tr:last-child td{
  border-bottom:0;
}

.rate-box td:first-child{
  font-weight:700;
  color:#071a38;
}

.rate-box td:nth-child(2){
  color:#687385;
}

.rate-box td:nth-child(3){
  font-weight:700;
  color:#071a38;
}

.rate-box td:first-child span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:11px;
  height:11px;
  background:#efbd3c;
  border-radius:3px;
  margin-right:10px;
  color:transparent;
  vertical-align:middle;
  flex-shrink:0;
}

/* FEATURES */

.features{
  background:#04142e;
  color:#fff;
  padding:82px 36px 90px;
}

.features .title h2{
  font-size:39px;
  line-height:1.15;
  margin:0 0 25px;
  color:#fff;
}

.features .title p{
  font-size:18px;
  line-height:1.45;
  margin:0 0 70px;
  color:#d0d5dd;
}

.feature-grid{
  max-width:900px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr;
  gap:30px;
}

.feature-grid article{
  background:#020d24;
  border:1px solid rgba(211,168,47,.38);
  border-radius:30px;
  padding:40px 42px;
  min-height:276px;
}

.feature-grid b{
  display:flex;
  width:72px;
  height:72px;
  border-radius:22px;
  background:linear-gradient(135deg,#f6d45d 0%,#e5a91b 100%);
  color:#061a3a;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:600;
}

.feature-grid h3{
  font-size:22px;
  line-height:1.2;
  margin:38px 0 15px;
  font-weight:700;
}

.feature-grid p{
  font-size:18px;
  line-height:1.5;
  color:#b8bec9;
  margin:0;
}

/* MARKETS */
.markets{
  background:#fffdfa;
  padding:88px 36px 105px;
}

.market-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.market-card{
  background:#fff;
  border:1px solid #e3ded7;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 8px 26px rgba(7,26,56,.08);
  padding-bottom:30px;
}

.market-head{
  background:transparent;
  color:#071a38;
  padding:34px 22px 0;
  display:block;
  text-align:center;
}

.market-head h3{
  margin:0;
  font-size:22px;
  font-weight:700;
}

.live{
  display:inline-block;
  border:0;
  color:#08a977;
  background:#dff5ec;
  border-radius:22px;
  padding:8px 18px;
  font-size:16px;
  font-weight:700;
  margin-top:18px;
}

.market-result{
  text-align:center;
  color:#687385;
  font-size:24px;
  font-weight:700;
  padding:28px 10px 16px;
}

.market-time{
  text-align:center;
  color:#08a977;
  font-size:16px;
  min-height:24px;
}

.chart-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  padding:35px 36px 0;
}

.chart-actions a{
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid #dedbd6;
  border-radius:29px;
  color:#071a38;
  background:#fff;
  font-size:17px;
  font-weight:600;
}

.play{
  display:flex;
  justify-content:center;
  background:linear-gradient(135deg,#f6d35c,#e5a719);
  color:#07101f;
  border-radius:29px;
  height:58px;
  align-items:center;
  margin:16px 36px 0;
  font-weight:700;
}

/* APP CTA */
.app-cta{
  background:#04142e;
  color:#fff;
  text-align:center;
  padding:108px 36px 70px;
}

.app-cta h2{
  font-size:40px;
  line-height:1.15;
  margin:0 0 24px;
  font-weight:700;
}

.app-cta p{
  font-size:18px;
  color:#c1c8d4;
  line-height:1.55;
  margin:0 auto 50px;
  max-width:560px;
}

.app-cta .gold-btn{
  max-width:390px;
}

footer{
  background:#04142e;
  color:#53617a;
  text-align:center;
  padding:0 35px 30px;
  font-size:14px;
}

/* FLOATING DOWNLOAD */
.floating-download{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:9999;
  background:#f5b82e;
  color:#180b00;
  padding:14px 24px;
  border-radius:30px;
  font-weight:700;
  box-shadow:0 6px 20px rgba(0,0,0,.35);
}

/* TABLET + MOBILE */
@media(max-width:700px){

  .hero{
    padding:70px 24px 45px;
  }

  .logo{
    width:140px;
    height:140px;
  }

  .hero h1{
    font-size:42px;
    line-height:1.08;
    margin-top:32px;
  }

  .tag{
    font-size:14px;
    letter-spacing:2px;
  }

  .hero p{
    font-size:16px;
    margin-bottom:40px;
  }

  .gold-btn,
  .wa-btn,
  .outline-btn{
    width:100%;
    height:62px;
    min-height:62px;
    font-size:18px;
    padding:0 18px;
  }

  .stats{
    margin-top:55px;
  }

  /* RATES MOBILE */
  .rates{
    padding:65px 20px 60px;
  }

  .title h2{
    font-size:32px;
    line-height:1.15;
  }

  .title p{
    font-size:16px;
    margin:20px 0 45px;
  }

  .rate-box{
    width:100%;
    border-radius:24px;
  }

  .rate-box th{
    height:55px;
    padding:0 10px;
    font-size:13px;
  }

  .rate-box td{
    height:72px;
    padding:10px 10px;
    font-size:16px;
  }

  .rate-box th:nth-child(1),
  .rate-box td:nth-child(1){ width:45%; }

  .rate-box th:nth-child(2),
  .rate-box td:nth-child(2){ width:25%; }

  .rate-box th:nth-child(3),
  .rate-box td:nth-child(3){ width:30%; }

  .rate-box td:first-child span{
    width:10px;
    height:10px;
    margin-right:8px;
  }

  /* FEATURES MOBILE */
  .features{
    width:100%;
    padding:60px 20px 70px;
    overflow:hidden;
  }

  .features .title{
    width:100%;
    padding:0;
    margin:0 auto;
  }

  .features .title h2{
    font-size:32px;
    line-height:1.15;
    white-space:normal;
    width:100%;
    max-width:100%;
    margin:0 auto 20px;
    text-align:center;
    overflow-wrap:normal;
  }

  .features .title p{
    font-size:17px;
    line-height:1.5;
    max-width:340px;
    margin:0 auto 45px;
    text-align:center;
  }

  .feature-grid{
    width:100%;
    grid-template-columns:1fr;
    gap:20px;
  }

  .feature-grid article{
    min-height:auto;
    padding:30px 24px;
    border-radius:24px;
  }

  .feature-grid b{
    width:60px;
    height:60px;
    border-radius:18px;
    font-size:25px;
  }

  .feature-grid h3{
    font-size:20px;
    margin:25px 0 12px;
  }

  .feature-grid p{
    font-size:16px;
  }

  /* MARKETS MOBILE */
  .markets{
    padding:70px 20px 80px;
  }

  .markets .title h2{
    font-size:32px;
  }

  .markets .title p{
    font-size:17px;
    margin:20px 0 50px;
  }

  .market-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .market-card{
    border-radius:24px;
  }

  .chart-actions{
    padding:25px 20px 0;
    gap:10px;
  }

  .chart-actions a{
    height:52px;
    font-size:15px;
  }

  .play{
    height:52px;
    margin:14px 20px 0;
  }

  /* APP CTA MOBILE */
  .app-cta{
    padding:75px 20px 60px;
  }

  .app-cta h2{
    font-size:32px;
  }

  .app-cta p{
    font-size:17px;
    margin-bottom:40px;
  }

  /* FLOATING BUTTON MOBILE */
  .floating-download{
    right:15px;
    bottom:15px;
    padding:13px 20px;
    font-size:16px;
  }
}

/* VERY SMALL PHONES */
@media(max-width:380px){

  .hero h1{
    font-size:36px;
  }

  .tag{
    font-size:12px;
    letter-spacing:1.5px;
  }

  .features .title h2{
    font-size:28px;
  }

  .rates,
  .features,
  .markets,
  .app-cta{
    padding-left:15px;
    padding-right:15px;
  }

  th{
    font-size:12px;
    padding:0 6px;
  }

  td{
    font-size:14px;
    padding:8px 6px;
  }
}
