:root{
  --bg:#050607;
  --bg2:#0a0b0d;
  --panel:#0f1114;
  --panel2:#12151a;

  --text:#f7f7f8;
  --muted:rgba(247,247,248,.74);

  --y:#ffd200;
  --y2:#ffb300;
  --line:rgba(255,255,255,.08);
  --shadow:0 18px 60px rgba(0,0,0,.55);

  --r:18px;
  --r2:14px;
  --container:1180px;

  /* BIGGER LOGO (x2) */
  --logoBox:128px;
  --logoImg:96px;
  --logoBoxSm:104px;
  --logoImgSm:78px;

  /* header height compensation */
  --stickyTop:128px;
}

*,
*::before,
*::after{ box-sizing:border-box; }

html, body{ overflow-x:hidden; }

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(255,210,0,.14), transparent 60%),
    radial-gradient(900px 520px at 95% 10%, rgba(255,210,0,.08), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height:1.55;
  overflow-wrap:anywhere;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:.2px;
  cursor:pointer;
  user-select:none;
  transition:transform .15s ease, filter .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space:nowrap;
}

.btn--lg{ padding:14px 18px; border-radius:16px; }

.btn--main{
  background:linear-gradient(180deg, var(--y), var(--y2));
  color:#0a0b0d;
  border-color:rgba(255,210,0,.38);
  box-shadow:0 14px 38px rgba(255,210,0,.18);
}
.btn--main:hover{ transform:translateY(-1px); filter:saturate(1.08); box-shadow:0 18px 48px rgba(255,210,0,.24); }

.btn--soft{
  background:rgba(255,255,255,.06);
  color:var(--text);
  border-color:rgba(255,255,255,.10);
}
.btn--soft:hover{ transform:translateY(-1px); background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.14); }

.btn--ghost{
  background:transparent;
  color:rgba(247,247,248,.92);
  border-color:rgba(255,255,255,.16);
}
.btn--ghost:hover{ transform:translateY(-1px); background:rgba(255,255,255,.05); }

.btn--block{ width:100%; }

.topbar{
  background:linear-gradient(180deg, rgba(255,210,0,.10), rgba(255,210,0,0));
  border-bottom:1px solid rgba(255,255,255,.06);
  padding:10px 0;
}

.topbar__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(247,247,248,.82);
  font-size:13px;
}

.dot{
  width:9px; height:9px;
  border-radius:50%;
  background:var(--y);
  box-shadow:0 0 0 6px rgba(255,210,0,.14);
}

.topbar__cta{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(5,6,7,.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:18px;
  min-width:0;
}

/* EXTRA BIG LOGO */
.brand__logo{
  width:var(--logoBox);
  height:var(--logoBox);
  border-radius:26px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
  flex:0 0 auto;
}
.brand__logo img{
  width:var(--logoImg);
  height:auto;
}

.brand__text{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:0;
}
.brand__title{
  font-weight:950;
  letter-spacing:.2px;
  font-size:18px;
  line-height:1.1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand__sub{
  font-size:13px;
  color:var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.nav{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:nowrap;
}

.nav__link{
  display:inline-flex;
  align-items:center;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-size:13px;
  color:rgba(247,247,248,.88);
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.nav__link:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
}
.nav__link--accent{
  background:rgba(255,210,0,.10);
  border-color:rgba(255,210,0,.20);
}

.header__actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.hide-sm{ display:inline-flex; }
@media (max-width: 860px){
  .nav{ display:none; }
}
@media (max-width: 560px){
  .hide-sm{ display:none; }
  .brand{ gap:14px; }
  .brand__logo{
    width:var(--logoBoxSm);
    height:var(--logoBoxSm);
    border-radius:24px;
  }
  .brand__logo img{ width:var(--logoImgSm); }
  .brand__title{ font-size:16px; }
  .brand__sub{ font-size:12px; }
}

.hero{
  padding:28px 0 10px;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:stretch;
}

.hero__main{
  border-radius:var(--r);
  background:
    radial-gradient(900px 280px at 10% 0%, rgba(255,210,0,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  padding:22px;
  position:relative;
  overflow:hidden;
  min-width:0;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.24);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(247,247,248,.84);
  font-size:13px;
  max-width:100%;
}
.pill__icon{
  width:10px; height:10px;
  border-radius:50%;
  background:var(--y);
  box-shadow:0 0 0 6px rgba(255,210,0,.14);
  flex:0 0 auto;
}

.hero h1{
  margin:14px 0 10px;
  font-size:34px;
  line-height:1.12;
  letter-spacing:-.3px;
}
.hero p{
  margin:0 0 16px;
  color:var(--muted);
  font-size:15px;
}

.hero__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.hero__highlights{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}

.hcard{
  padding:12px;
  border-radius:16px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.10);
  min-width:0;
}
.hcard b{ display:block; font-size:13px; letter-spacing:.2px; }
.hcard span{ display:block; font-size:12px; color:var(--muted); margin-top:3px; }

.hero__side{
  border-radius:var(--r);
  background:linear-gradient(180deg, rgba(18,21,26,.92), rgba(18,21,26,.70));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
  position:relative;
  overflow:hidden;
  min-width:0;
}

.sideBox{
  border-radius:18px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.10);
  padding:14px;
}

.sideBox__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.badgeY{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,210,0,.16);
  border:1px solid rgba(255,210,0,.26);
  color:rgba(255,240,190,.98);
  font-weight:950;
  font-size:12px;
}

.badgeDark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(247,247,248,.86);
  font-weight:850;
  font-size:12px;
}

.sideBox__title{
  margin:0 0 6px;
  font-size:16px;
  letter-spacing:-.2px;
}
.sideBox__desc{
  margin:0 0 12px;
  color:var(--muted);
  font-size:13px;
}

.trustGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
}
.trust{
  padding:12px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.trust b{ display:block; font-size:13px; }
.trust span{ display:block; color:var(--muted); font-size:12px; margin-top:3px; }

.section{ padding:46px 0; }

.grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap:18px;
  align-items:start;
}

.card{
  border-radius:var(--r);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  padding:20px;
  min-width:0;
}

.card h2{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.2px;
}
.card h3{
  margin:18px 0 8px;
  font-size:16px;
}
.card p{
  margin:0 0 12px;
  color:var(--muted);
  font-size:14px;
}

.split{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin:14px 0 18px;
}

.panel{
  border-radius:18px;
  background:rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.10);
  padding:14px;
  min-width:0;
}

.panel--yellow{
  background:linear-gradient(180deg, rgba(255,210,0,.14), rgba(0,0,0,.18));
  border-color:rgba(255,210,0,.20);
}

.list{
  margin:0;
  padding-left:18px;
  color:rgba(247,247,248,.88);
}
.list li{ margin:8px 0; }

.tableWrap{
  width:100%;
  max-width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
}

.table th,
.table td{
  padding:12px 14px;
  text-align:left;
  vertical-align:top;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:13px;
  color:rgba(247,247,248,.90);
}

.table th{
  background:rgba(5,6,7,.92);
  position:sticky;
  top:0;
  z-index:1;
  font-weight:950;
}

.table tr:last-child td{ border-bottom:none; }

.faq{ display:grid; gap:10px; }

.faq details{
  border-radius:16px;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
  padding:14px;
}

.faq summary{
  cursor:pointer;
  font-weight:950;
  list-style:none;
}
.faq summary::-webkit-details-marker{ display:none; }

.ctaStack{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:12px 0 14px;
}

.mini{
  border-radius:18px;
  background:rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.10);
  padding:12px;
  margin-bottom:14px;
}
.mini__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:8px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.mini__row:last-child{ border-bottom:none; }
.mini__k{ color:rgba(247,247,248,.82); font-weight:850; font-size:12px; }
.mini__v{ color:var(--muted); font-size:12px; text-align:right; }

.offer{
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,210,0,.14), rgba(0,0,0,.18));
  border:1px solid rgba(255,210,0,.22);
  padding:14px;
}
.offer__top b{ display:block; font-size:13px; letter-spacing:.2px; }
.offer__top span{ display:block; color:var(--muted); font-size:12px; margin-top:3px; margin-bottom:10px; }

.footCta{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:16px;
}

.footFine{
  text-align:center;
  color:var(--muted);
  font-size:12px;
  padding-top:6px;
}

/* adjust sticky card position because header is taller now */
.card--sticky{
  position:sticky;
  top:var(--stickyTop);
}

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:26px 0 36px;
  background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.22));
}

.footer__row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.footer__brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer__logo{
  width:64px;
  height:auto;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  padding:10px;
}
.footer__brand b{ display:block; font-weight:950; }
.footer__brand span{ display:block; color:var(--muted); font-size:12px; }

.footer__text{
  margin:12px 0 0;
  color:var(--muted);
  font-size:12px;
  max-width:520px;
}

.footer__right{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.footer__bottom{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:12px;
}

.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display:none;
  z-index:120;
}

.overlay.is-open{ display:block; }

.modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:130;
}

.modal.is-open{ display:flex; }

.modal__box{
  width:min(560px, 100%);
  border-radius:22px;
  background:
    radial-gradient(700px 240px at 20% 0%, rgba(255,210,0,.18), transparent 55%),
    linear-gradient(180deg, rgba(18,21,26,.96), rgba(18,21,26,.82));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 30px 90px rgba(0,0,0,.75);
  padding:18px;
  position:relative;
  overflow:hidden;
}

.modal__close{
  position:absolute;
  top:12px;
  right:12px;
  width:38px;
  height:38px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:rgba(247,247,248,.92);
  display:grid;
  place-items:center;
  cursor:pointer;
}

.modal__title{
  margin:0 0 6px;
  font-size:18px;
  font-weight:950;
}

.modal__desc{
  margin:0 0 12px;
  color:var(--muted);
  font-size:13px;
}

.modal__bonus{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
  padding:12px;
  border-radius:18px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
  margin:12px 0 12px;
}

.modal__bonus b{
  display:block;
  font-size:12px;
  color:rgba(247,247,248,.86);
  margin-bottom:2px;
}

.modal__bonus span{
  display:block;
  font-size:18px;
  font-weight:950;
  color:var(--y);
  line-height:1.1;
}

.modal__actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.modal__fine{
  margin-top:10px;
  text-align:center;
  color:var(--muted);
  font-size:12px;
}

.catfish{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:110;
  display:none;
}

.catfish.is-open{ display:block; }

.catfish__box{
  width:min(980px, 100%);
  margin:0 auto;
  border-radius:22px;
  background:rgba(18,21,26,.92);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 22px 70px rgba(0,0,0,.70);
  padding:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-width:0;
}

.catfish__left{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.catfish__icon{
  width:44px;
  height:44px;
  border-radius:18px;
  background:rgba(255,210,0,.16);
  border:1px solid rgba(255,210,0,.26);
  position:relative;
  flex:0 0 auto;
}
.catfish__icon::after{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--y);
  box-shadow:0 0 0 8px rgba(255,210,0,.14);
}

.catfish__text{
  min-width:0;
}

.catfish__text b{
  display:block;
  font-size:13px;
  font-weight:950;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.catfish__text span{
  display:block;
  font-size:12px;
  color:var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.catfish__actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.catfish__close{
  width:38px;
  height:38px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:rgba(247,247,248,.92);
  cursor:pointer;
}

@media (max-width: 1020px){
  .grid{ grid-template-columns:1fr; }
  .card--sticky{ position:static; }
}

@media (max-width: 920px){
  .hero__grid{ grid-template-columns:1fr; }
}

@media (max-width: 560px){
  .container{ width:calc(100% - 24px); }
  .hero h1{ font-size:28px; }
  .hero__highlights{ grid-template-columns:1fr; }
  .split{ grid-template-columns:1fr; }
  .modal__actions{ grid-template-columns:1fr; }
  .catfish__box{ flex-direction:column; align-items:stretch; }
  .catfish__actions{ width:100%; justify-content:stretch; }
  .catfish__actions .btn{ width:100%; }
}
@media (max-width: 560px){
  .hero__grid{
    display:flex;
    flex-direction:column;
  }

  .hero__side{ order:-1; }   /* бонус сверху */
  .hero__main{ order:0; }    /* основной блок ниже */
}
.efortuna-strategy{
  padding: 2.5rem 0 3rem;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,210,0,.04) 60%, rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.efortuna-strategy__container{
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.efortuna-strategy__title{
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #f7f7f8;
  font-weight: 950;
}

.efortuna-strategy__lead{
  border-radius: 1.125rem;
  background: linear-gradient(180deg, rgba(255,210,0,.10), rgba(0,0,0,.18));
  border: 1px solid rgba(255,210,0,.20);
  padding: 1rem 1.125rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}

.efortuna-strategy__lead p{
  margin: 0;
  color: rgba(247,247,248,.92);
  font-size: 0.95rem;
  line-height: 1.6;
}

.efortuna-strategy__article{
  margin: 0 0 1.5rem;
  padding: 1.125rem 1.125rem 0.5rem;
  border-radius: 1.125rem;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
}

.efortuna-strategy__h3{
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  line-height: 1.25;
  color: #f7f7f8;
  font-weight: 900;
  letter-spacing: -0.005em;
}

.efortuna-strategy__h4{
  margin: 1.125rem 0 0.5rem;
  font-size: 1rem;
  line-height: 1.3;
  color: rgba(255,210,0,.92);
  font-weight: 850;
}

.efortuna-strategy__p{
  margin: 0 0 0.875rem;
  color: rgba(247,247,248,.82);
  font-size: 0.92rem;
  line-height: 1.62;
}

.efortuna-strategy__list{
  margin: 0.25rem 0 1rem;
  padding-left: 1.125rem;
  color: rgba(247,247,248,.86);
}

.efortuna-strategy__li{
  margin: 0.5rem 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.efortuna-strategy__aside{
  margin: 1rem 0 1.125rem;
  padding: 0.875rem 1rem;
  border-radius: 0.875rem;
  background: rgba(255,210,0,.08);
  border-left: 3px solid rgba(255,210,0,.55);
  border-top: 1px solid rgba(255,210,0,.14);
  border-right: 1px solid rgba(255,210,0,.14);
  border-bottom: 1px solid rgba(255,210,0,.14);
}

.efortuna-strategy__h4-aside{
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  font-weight: 900;
  color: rgba(255,232,150,.98);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.efortuna-strategy__p-aside{
  margin: 0;
  color: rgba(247,247,248,.88);
  font-size: 0.9rem;
  line-height: 1.55;
}

.efortuna-strategy__tablewrap{
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  margin: 0.75rem 0 1.125rem;
}

.efortuna-strategy__table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 32rem;
}

.efortuna-strategy__table th,
.efortuna-strategy__table td{
  padding: 0.75rem 0.875rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 0.85rem;
  color: rgba(247,247,248,.88);
  line-height: 1.5;
}

.efortuna-strategy__table th{
  background: rgba(5,6,7,.92);
  font-weight: 900;
  color: #f7f7f8;
  position: sticky;
  top: 0;
  z-index: 1;
}

.efortuna-strategy__table tr:last-child td{
  border-bottom: none;
}

.efortuna-strategy__table tbody tr:hover td{
  background: rgba(255,210,0,.04);
}

.efortuna-strategy__cta{
  margin-top: 1.25rem;
  padding: 1rem 1.125rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255,210,0,.12), rgba(0,0,0,.20));
  border: 1px solid rgba(255,210,0,.22);
  text-align: center;
}

.efortuna-strategy__cta-text{
  margin: 0;
  color: rgba(247,247,248,.92);
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 600;
}

@media (min-width: 36em){
  .efortuna-strategy__title{ font-size: 1.75rem; }
  .efortuna-strategy__h3{ font-size: 1.25rem; }
  .efortuna-strategy__article{ padding: 1.375rem 1.375rem 0.625rem; }
  .efortuna-strategy__lead{ padding: 1.25rem 1.5rem; }
  .efortuna-strategy__lead p{ font-size: 1rem; }
}

@media (min-width: 48em){
  .efortuna-strategy{ padding: 3rem 0 3.5rem; }
  .efortuna-strategy__title{ font-size: 1.95rem; }
  .efortuna-strategy__h3{ font-size: 1.3rem; }
  .efortuna-strategy__h4{ font-size: 1.05rem; }
  .efortuna-strategy__p{ font-size: 0.95rem; }
  .efortuna-strategy__li{ font-size: 0.95rem; }
  .efortuna-strategy__table th,
  .efortuna-strategy__table td{ font-size: 0.9rem; padding: 0.875rem 1rem; }
}

@media (min-width: 64em){
  .efortuna-strategy__title{ font-size: 2.1rem; }
  .efortuna-strategy__article{ padding: 1.625rem 1.75rem 0.75rem; }
  .efortuna-strategy__lead{ padding: 1.5rem 1.75rem; }
}